]> Cypherpunks repositories - gostls13.git/commitdiff
os: skip TestPipeThreads on Solaris
authorIan Lance Taylor <iant@golang.org>
Wed, 15 Feb 2017 20:36:24 +0000 (12:36 -0800)
committerIan Lance Taylor <iant@golang.org>
Wed, 15 Feb 2017 21:27:59 +0000 (21:27 +0000)
I don't know why it is not working.  Filed issue 19111 for this.

Fixes build.

Update #19111.

Change-Id: I76f8d6aafba5951da2f3ad7d10960419cca7dd1f
Reviewed-on: https://go-review.googlesource.com/37092
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/os/os_test.go

index 93c561641922c6c039ce16e21952f6cc773c3a62..840139c308bead97077a530383574b7c67ac1380 100644 (file)
@@ -1947,6 +1947,8 @@ func TestPipeThreads(t *testing.T) {
        switch runtime.GOOS {
        case "freebsd":
                t.Skip("skipping on FreeBSD; issue 19093")
+       case "solaris":
+               t.Skip("skipping on Solaris; issue 19111")
        case "windows":
                t.Skip("skipping on Windows; issue 19098")
        case "plan9":