From: Benny Siegert Date: Mon, 27 Aug 2018 13:16:38 +0000 (+0000) Subject: cmd/dist: do not run race detector tests on netbsd X-Git-Tag: go1.12beta1~1251 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7334904e43005f930a776c793d54e03d13e62b30;p=gostls13.git cmd/dist: do not run race detector tests on netbsd The race detector is not fully functional on NetBSD yet. Without this change, all.bash fails in TestOutput. This unbreaks the netbsd-amd64 builder. Update #26403 Fixes #27268 Change-Id: I2c7015692d3632aa1037f40155d4fc5c7bb1d8c3 Reviewed-on: https://go-review.googlesource.com/131555 Reviewed-by: Brad Fitzpatrick Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 3d0ef28448..4cd854773f 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -1343,6 +1343,11 @@ func (t *tester) raceDetectorSupported() bool { if isAlpineLinux() { return false } + // NetBSD support is unfinished. + // golang.org/issue/26403 + if goos == "netbsd" { + return false + } return true }