From: Kir Kolyshkin Date: Sun, 15 Sep 2024 22:21:43 +0000 (-0700) Subject: os: TestPipeThreads: remove openbsd special case X-Git-Tag: go1.24rc1~887 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=41ca2637d4df8b8edf63436c6caab56821d2af38;p=gostls13.git os: TestPipeThreads: remove openbsd special case Since CL 393354 this should no longer be necessary. Change-Id: Ifec4ef483f9c06d9b49827327dd6708db146d886 Reviewed-on: https://go-review.googlesource.com/c/go/+/613157 Run-TryBot: Kirill Kolyshkin Reviewed-by: Carlos Amedee Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI TryBot-Result: Gopher Robot --- diff --git a/src/os/os_test.go b/src/os/os_test.go index 6a92132845..ad024b6fd0 100644 --- a/src/os/os_test.go +++ b/src/os/os_test.go @@ -2639,11 +2639,6 @@ func TestPipeThreads(t *testing.T) { threads := 100 - // OpenBSD has a low default for max number of files. - if runtime.GOOS == "openbsd" { - threads = 50 - } - r := make([]*File, threads) w := make([]*File, threads) for i := 0; i < threads; i++ {