1
0
mirror of https://github.com/golang/go synced 2024-09-29 13:24:28 -06:00

cmd/dist: do not skip 'cmd' tests in race mode

Fixes #37940

Change-Id: Ib869a4bf84296dac201cc7252431d7161b9c96f4
Reviewed-on: https://go-review.googlesource.com/c/go/+/224038
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Alexander Rakoczy <alex@golang.org>
This commit is contained in:
Bryan C. Mills 2020-03-19 13:00:44 -04:00
parent 437bd90f13
commit 8cb865c919

View File

@ -1527,9 +1527,6 @@ func (t *tester) shouldUsePrecompiledStdTest() bool {
}
func (t *tester) shouldTestCmd() bool {
if t.race {
return false
}
if goos == "js" && goarch == "wasm" {
// Issues 25911, 35220
return false