aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_unix_test.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2016-01-21 15:18:23 -0800
committerIan Lance Taylor <iant@golang.org>2016-01-22 00:15:04 +0000
commit0760023960fc9f1012e6bac277b886cac1c1bae9 (patch)
tree36977f6aa4d14c90bbd3e2e608495e5488c6b7a3 /src/runtime/crash_unix_test.go
parentc7f5831fa9277edebb863ab11c9527fb09637ce9 (diff)
downloadgo-0760023960fc9f1012e6bac277b886cac1c1bae9.tar.gz
go-0760023960fc9f1012e6bac277b886cac1c1bae9.zip
runtime: skip TestSignalExitStatus on NetBSD
It doesn't work and I don't know why. Update #14063. Change-Id: I42735012cf6247eca5336f29fcf713e08c8477f8 Reviewed-on: https://go-review.googlesource.com/18817 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/crash_unix_test.go')
-rw-r--r--src/runtime/crash_unix_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runtime/crash_unix_test.go b/src/runtime/crash_unix_test.go
index a7af7eff28..5284a37b0f 100644
--- a/src/runtime/crash_unix_test.go
+++ b/src/runtime/crash_unix_test.go
@@ -136,6 +136,10 @@ 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")
+ }
exe, err := buildTestProg(t, "testprog")
if err != nil {
t.Fatal(err)