From: Ian Lance Taylor Date: Thu, 4 Feb 2016 05:49:45 +0000 (-0800) Subject: runtime: skip TestSignalExitStatus on Solaris X-Git-Tag: go1.6~1^2~36 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1f7e3cfdbcc4b12ba769bb5e9e09887145870187;p=gostls13.git runtime: skip TestSignalExitStatus on Solaris Update #14063. Change-Id: Id13456deb15c90a8af282b77d78ff5cdbd1de8bf Reviewed-on: https://go-review.googlesource.com/19208 Run-TryBot: Ian Lance Taylor Reviewed-by: Minux Ma TryBot-Result: Gobot Gobot --- diff --git a/src/runtime/crash_unix_test.go b/src/runtime/crash_unix_test.go index 5284a37b0f..1a012eb6ef 100644 --- a/src/runtime/crash_unix_test.go +++ b/src/runtime/crash_unix_test.go @@ -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 {