Commit bac5b3f0 authored by Emmanuel Odeke's avatar Emmanuel Odeke

os: skip TestPipeThreads on GOOS=darwin

Updates #32326.
Updates #33953.

Change-Id: I97a1cbe682becfe9592e19294d4d94f5e5b16c21
Reviewed-on: https://go-review.googlesource.com/c/go/+/192342
Run-TryBot: Emmanuel Odeke <emm.odeke@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent e5e5fb02
...@@ -2251,6 +2251,8 @@ func TestPipeThreads(t *testing.T) { ...@@ -2251,6 +2251,8 @@ func TestPipeThreads(t *testing.T) {
t.Skip("skipping on Plan 9; does not support runtime poller") t.Skip("skipping on Plan 9; does not support runtime poller")
case "js": case "js":
t.Skip("skipping on js; no support for os.Pipe") t.Skip("skipping on js; no support for os.Pipe")
case "darwin":
t.Skip("skipping on Darwin; issue 33953")
} }
threads := 100 threads := 100
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment