]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip TestSignalExitStatus on NetBSD
authorIan Lance Taylor <iant@golang.org>
Thu, 21 Jan 2016 23:18:23 +0000 (15:18 -0800)
committerIan Lance Taylor <iant@golang.org>
Fri, 22 Jan 2016 00:15:04 +0000 (00:15 +0000)
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>
src/runtime/crash_unix_test.go

index a7af7eff285efe40b401bd3f15672940a26c3546..5284a37b0f141721060c5e6a03098a4cd83c6f4c 100644 (file)
@@ -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)