Skip to content

Commit bac5b3f

Browse files
committed
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent e5e5fb0 commit bac5b3f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/os/os_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -2251,6 +2251,8 @@ func TestPipeThreads(t *testing.T) {
22512251
t.Skip("skipping on Plan 9; does not support runtime poller")
22522252
case "js":
22532253
t.Skip("skipping on js; no support for os.Pipe")
2254+
case "darwin":
2255+
t.Skip("skipping on Darwin; issue 33953")
22542256
}
22552257

22562258
threads := 100

0 commit comments

Comments
 (0)