From 41ca2637d4df8b8edf63436c6caab56821d2af38 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Sun, 15 Sep 2024 15:21:43 -0700 Subject: [PATCH] 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 --- src/os/os_test.go | 5 ----- 1 file changed, 5 deletions(-) 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++ {