From 64337813150d698cddcf588994a9c26f678defca Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Mon, 7 Nov 2022 07:43:45 -0800 Subject: Fix fuzzer default contents after #5212 (#5223) That PR renamed test/lit/optimize-instructions.wast to test/lit/optimize-instructions-mvp.wast. However, the fuzzer was explicitly adding the testto the list of important initial contents under the old name, so it was failing an assertion that the initial contents existed. Update the fuzzer to use the new test name. --- scripts/fuzz_opt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/fuzz_opt.py') diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index a07b78bd1..bb6e5723d 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -182,7 +182,7 @@ def randomize_fuzz_settings(): def init_important_initial_contents(): FIXED_IMPORTANT_INITIAL_CONTENTS = [ # Perenially-important passes - os.path.join('lit', 'passes', 'optimize-instructions.wast'), + os.path.join('lit', 'passes', 'optimize-instructions-mvp.wast'), os.path.join('passes', 'optimize-instructions_fuzz-exec.wast'), ] MANUAL_RECENT_INITIAL_CONTENTS = [ -- cgit v1.2.3