mirror of
https://github.com/golang/go
synced 2024-11-25 09:27:57 -07:00
net: skip UnixShutdown test on windows
R=golang-dev, r CC=golang-dev https://golang.org/cl/6259052
This commit is contained in:
parent
0ce90459e8
commit
397b687324
@ -61,7 +61,8 @@ func TestShutdown(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestShutdownUnix(t *testing.T) {
|
func TestShutdownUnix(t *testing.T) {
|
||||||
if runtime.GOOS == "plan9" {
|
switch runtime.GOOS {
|
||||||
|
case "windows", "plan9":
|
||||||
t.Logf("skipping test on %q", runtime.GOOS)
|
t.Logf("skipping test on %q", runtime.GOOS)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user