Skip to content

Commit 0f05ed3

Browse files
committed
os: enable TestClosedPipeRace* on FreeBSD
This test has worked since CL 165801 (committed March 12, 2019), so stop skipping it. With this, we check that Close makes concurrent I/O operations on pipes return Errclosed on all platforms. Updates #19093. Change-Id: Ic090c70996c115abf80d8f9b93ca2aeaf347c9d8 Reviewed-on: https://go-review.googlesource.com/c/go/+/371016 Trust: Austin Clements <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Run-TryBot: Austin Clements <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent d407a8c commit 0f05ed3

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/os/pipe_test.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,6 @@ func TestStdPipeHelper(t *testing.T) {
150150
}
151151

152152
func testClosedPipeRace(t *testing.T, read bool) {
153-
switch runtime.GOOS {
154-
case "freebsd":
155-
t.Skip("FreeBSD does not use the poller; issue 19093")
156-
}
157-
158153
limit := 1
159154
if !read {
160155
// Get the amount we have to write to overload a pipe

0 commit comments

Comments
 (0)