From 6bfdbe8950b22b1c832478bd397754f3108df040 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 27 Sep 2020 11:16:11 +0200 Subject: prog: don't run mutation tests in race mode They take too long. --- prog/mutation_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'prog') diff --git a/prog/mutation_test.go b/prog/mutation_test.go index 830ed47f7..f17886a61 100644 --- a/prog/mutation_test.go +++ b/prog/mutation_test.go @@ -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 -- cgit mrf-deployment