diff options
author | Wolfy-J <[email protected]> | 2018-05-29 13:11:42 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-05-29 13:11:42 +0300 |
commit | ebef51e570fbb1d8761275b44bbdbf2ea4dd33a6 (patch) | |
tree | 8211b55ef5d8e35c2f1c1431539ff596c824262f /socket_factory_test.go | |
parent | 0479f577e1f9992e425f0810736d54b024f30d6e (diff) |
fixing tests
Diffstat (limited to 'socket_factory_test.go')
-rw-r--r-- | socket_factory_test.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/socket_factory_test.go b/socket_factory_test.go index 87c8815b..4339b99c 100644 --- a/socket_factory_test.go +++ b/socket_factory_test.go @@ -159,7 +159,7 @@ func Test_Tcp_Echo(t *testing.T) { } func Test_Unix_Start(t *testing.T) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { t.Skip("not supported on " + runtime.GOOS) } @@ -184,7 +184,7 @@ func Test_Unix_Start(t *testing.T) { } func Test_Unix_Failboot(t *testing.T) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { t.Skip("not supported on " + runtime.GOOS) } @@ -204,7 +204,7 @@ func Test_Unix_Failboot(t *testing.T) { } func Test_Unix_Timeout(t *testing.T) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { t.Skip("not supported on " + runtime.GOOS) } @@ -224,7 +224,7 @@ func Test_Unix_Timeout(t *testing.T) { } func Test_Unix_Invalid(t *testing.T) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { t.Skip("not supported on " + runtime.GOOS) } @@ -243,7 +243,7 @@ func Test_Unix_Invalid(t *testing.T) { } func Test_Unix_Broken(t *testing.T) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { t.Skip("not supported on " + runtime.GOOS) } @@ -272,7 +272,7 @@ func Test_Unix_Broken(t *testing.T) { } func Test_Unix_Echo(t *testing.T) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { t.Skip("not supported on " + runtime.GOOS) } |