From 71d483814b0f74e465d40e0059c0d733f0017cad Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 17 Dec 2022 13:09:15 +0100 Subject: pkg/testutil: move iterCount from prog package --- prog/mutation_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog/mutation_test.go') diff --git a/prog/mutation_test.go b/prog/mutation_test.go index 0c084d1fe..11e3a4933 100644 --- a/prog/mutation_test.go +++ b/prog/mutation_test.go @@ -416,7 +416,7 @@ func runMutationTests(t *testing.T, tests [][2]string, valid bool) { t.Fatalf("failed to deserialize the program: %v", err) } want := goal.Serialize() - iters := iterCount() + iters := testutil.IterCount() if valid { iters = 1e6 // it will stop after reaching the goal } -- cgit mrf-deployment