diff options
author | Wolfy-J <[email protected]> | 2018-06-06 16:08:14 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-06 16:08:14 +0300 |
commit | c6b6ab10830c47e4e4e82cec88dd03e79e254a6f (patch) | |
tree | e41a3bf8278f7378081d3b2e32df849e7c854edc /socket_factory_test.go | |
parent | f688b45aa74378287d12a8a0197aebbb7b5499c9 (diff) |
fixing tests
Diffstat (limited to 'socket_factory_test.go')
-rw-r--r-- | socket_factory_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/socket_factory_test.go b/socket_factory_test.go index f6b1350c..214a4851 100644 --- a/socket_factory_test.go +++ b/socket_factory_test.go @@ -373,7 +373,7 @@ func Benchmark_Tcp_Worker_ExecEcho(b *testing.B) { } func Benchmark_Unix_SpawnWorker_Stop(b *testing.B) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { b.Skip("not supported on " + runtime.GOOS) } @@ -400,7 +400,7 @@ func Benchmark_Unix_SpawnWorker_Stop(b *testing.B) { } func Benchmark_Unix_Worker_ExecEcho(b *testing.B) { - if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { + if runtime.GOOS == "windows" { b.Skip("not supported on " + runtime.GOOS) } |