diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-09-27 11:16:11 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-09-28 09:41:25 +0200 |
| commit | 6bfdbe8950b22b1c832478bd397754f3108df040 (patch) | |
| tree | 1159374d68ec6403e9b42ba35eb1873e71d708ad /prog | |
| parent | 59578253057fc4e1d0d94e5bc7afb12be5cf0642 (diff) | |
prog: don't run mutation tests in race mode
They take too long.
Diffstat (limited to 'prog')
| -rw-r--r-- | prog/mutation_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
