]> Cypherpunks repositories - gostls13.git/commitdiff
os: enable TestPipeThreads on FreeBSD
authorTobias Klauser <tklauser@distanz.ch>
Tue, 21 Dec 2021 12:13:01 +0000 (13:13 +0100)
committerTobias Klauser <tobias.klauser@gmail.com>
Tue, 21 Dec 2021 22:43:13 +0000 (22:43 +0000)
This test works on FreeBSD since CL 165801 was submitted.

Updates #19093

Change-Id: I45ffeb403c1de4385cdb21b9647f21976061e1ea
Reviewed-on: https://go-review.googlesource.com/c/go/+/373358
Trust: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/os/os_test.go

index 717330e86a2b7f46989a3a900d0ccea625422281..5a813e0a7dd56a87f9d43561ddf7d6bfcf2c4cfc 100644 (file)
@@ -2434,8 +2434,6 @@ func TestRemoveAllRace(t *testing.T) {
 // Test that reading from a pipe doesn't use up a thread.
 func TestPipeThreads(t *testing.T) {
        switch runtime.GOOS {
-       case "freebsd":
-               t.Skip("skipping on FreeBSD; issue 19093")
        case "illumos", "solaris":
                t.Skip("skipping on Solaris and illumos; issue 19111")
        case "windows":