1
0
mirror of https://github.com/golang/go synced 2024-11-11 22:10:22 -07:00

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
This commit is contained in:
Joel Sing 2012-08-16 02:02:00 +10:00
parent 858bd05e2d
commit b60d45f5b8

View 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
}