net: skip UnixShutdown test on windows

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/6259052
This commit is contained in:
Brad Fitzpatrick 2012-05-29 15:46:07 -07:00
parent 0ce90459e8
commit 397b687324
1 changed files with 2 additions and 1 deletions

View File

@ -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
}