Commit 397b6873 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: skip UnixShutdown test on windows

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/6259052
parent 0ce90459
......@@ -61,7 +61,8 @@ func TestShutdown(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)
return
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment