1
0
mirror of https://github.com/golang/go synced 2024-11-25 09:47: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:
Brad Fitzpatrick 2012-05-29 15:46:07 -07:00
parent 0ce90459e8
commit 397b687324

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
}