]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip TestSignalExitStatus on Solaris
authorIan Lance Taylor <iant@golang.org>
Thu, 4 Feb 2016 05:49:45 +0000 (21:49 -0800)
committerIan Lance Taylor <iant@golang.org>
Thu, 4 Feb 2016 06:19:19 +0000 (06:19 +0000)
Update #14063.

Change-Id: Id13456deb15c90a8af282b77d78ff5cdbd1de8bf
Reviewed-on: https://go-review.googlesource.com/19208
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Minux Ma <minux@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>

src/runtime/crash_unix_test.go

index 5284a37b0f141721060c5e6a03098a4cd83c6f4c..1a012eb6ef15c95afc9580639b29c0b7c6be7d37 100644 (file)
@@ -137,8 +137,8 @@ func loop(i int, c chan bool) {
 func TestSignalExitStatus(t *testing.T) {
        testenv.MustHaveGoBuild(t)
        switch runtime.GOOS {
-       case "netbsd":
-               t.Skip("skipping on NetBSD; see https://golang.org/issue/14063")
+       case "netbsd", "solaris":
+               t.Skipf("skipping on %s; see https://golang.org/issue/14063", runtime.GOOS)
        }
        exe, err := buildTestProg(t, "testprog")
        if err != nil {