prog: don't run mutation tests in race mode

They take too long.
This commit is contained in:
Dmitry Vyukov 2020-09-27 11:16:11 +02:00
parent 5957825305
commit 6bfdbe8950

View File

@ -388,6 +388,9 @@ func BenchmarkGenerate(b *testing.B) {
}
func runMutationTests(t *testing.T, tests [][2]string, valid bool) {
if raceEnabled {
t.Skip("skipping in race mode, too slow")
}
target := initTargetTest(t, "test", "64")
for ti, test := range tests {
test := test