diff options
Diffstat (limited to 'libgo/go/net/error_test.go')
-rw-r--r-- | libgo/go/net/error_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/go/net/error_test.go b/libgo/go/net/error_test.go index c4fee5aa5e5..89dcc2e6e6e 100644 --- a/libgo/go/net/error_test.go +++ b/libgo/go/net/error_test.go @@ -185,7 +185,7 @@ func TestDialError(t *testing.T) { func TestProtocolDialError(t *testing.T) { switch runtime.GOOS { - case "nacl", "solaris", "illumos": + case "solaris", "illumos": t.Skipf("not supported on %s", runtime.GOOS) } @@ -214,7 +214,7 @@ func TestProtocolDialError(t *testing.T) { func TestDialAddrError(t *testing.T) { switch runtime.GOOS { - case "nacl", "plan9": + case "plan9": t.Skipf("not supported on %s", runtime.GOOS) } if !supportsIPv4() || !supportsIPv6() { @@ -376,7 +376,7 @@ func TestListenPacketError(t *testing.T) { func TestProtocolListenError(t *testing.T) { switch runtime.GOOS { - case "nacl", "plan9": + case "plan9": t.Skipf("not supported on %s", runtime.GOOS) } |