aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2016-02-03 21:49:45 -0800
committerIan Lance Taylor <iant@golang.org>2016-02-04 06:19:19 +0000
commit1f7e3cfdbcc4b12ba769bb5e9e09887145870187 (patch)
tree43542271effad36e9e5c0a8ccc7f913e4836dc2e
parentfd24e6d561d672362ebe4a8231aa43f1c54b164a (diff)
downloadgo-1f7e3cfdbcc4b12ba769bb5e9e09887145870187.tar.gz
go-1f7e3cfdbcc4b12ba769bb5e9e09887145870187.zip
runtime: skip TestSignalExitStatus on Solaris
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>
-rw-r--r--src/runtime/crash_unix_test.go4
1 files changed, 2 insertions, 2 deletions
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 {