From: Joel Sing Date: Wed, 15 Aug 2012 16:02:00 +0000 (+1000) Subject: runtime: disable crash handler test on netbsd X-Git-Tag: go1.1rc2~2645 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b60d45f5b8c7a6c844c8f7878784b8560628cef4;p=gostls13.git runtime: disable crash handler test on netbsd 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 --- diff --git a/src/pkg/runtime/crash_test.go b/src/pkg/runtime/crash_test.go index 0abc531537..465b2d7096 100644 --- a/src/pkg/runtime/crash_test.go +++ b/src/pkg/runtime/crash_test.go @@ -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 }