]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: disable crash handler test on netbsd
authorJoel Sing <jsing@google.com>
Wed, 15 Aug 2012 16:02:00 +0000 (02:02 +1000)
committerJoel Sing <jsing@google.com>
Wed, 15 Aug 2012 16:02:00 +0000 (02:02 +1000)
Disable the crash handler test on NetBSD until I can figure out why
it triggers failures in later tests.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/6460090

src/pkg/runtime/crash_test.go

index 0abc531537376b67de0578706544fb5ec0bd76be..465b2d709644eed5c5143bcfbbc4ff416d145ece 100644 (file)
@@ -22,8 +22,10 @@ type crashTest struct {
 // both main (m0) and non-main threads (m).
 
 func testCrashHandler(t *testing.T, ct *crashTest) {
-       if runtime.GOOS == "freebsd" {
+       if runtime.GOOS == "freebsd" || runtime.GOOS == "netbsd" {
                // TODO(brainman): do not know why this test fails on freebsd
+               // TODO(jsing): figure out why this causes delayed failures
+               // on NetBSD - http://golang.org/issue/3954
                t.Logf("skipping test on %q", runtime.GOOS)
                return
        }