diff options
Diffstat (limited to 'src/pkg/net/file_test.go')
| -rw-r--r-- | src/pkg/net/file_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/net/file_test.go b/src/pkg/net/file_test.go index bd1e2c9d7..9a8c2dcbc 100644 --- a/src/pkg/net/file_test.go +++ b/src/pkg/net/file_test.go @@ -57,7 +57,7 @@ func testFileListener(t *testing.T, net, laddr string) { } func TestFileListener(t *testing.T) { - if runtime.GOOS == "windows" { + if runtime.GOOS == "windows" || runtime.GOOS == "plan9" { return } testFileListener(t, "tcp", "127.0.0.1") @@ -116,7 +116,7 @@ func testFilePacketConnDial(t *testing.T, net, raddr string) { } func TestFilePacketConn(t *testing.T) { - if runtime.GOOS == "windows" { + if runtime.GOOS == "windows" || runtime.GOOS == "plan9" { return } testFilePacketConnListen(t, "udp", "127.0.0.1:0") |
