summaryrefslogtreecommitdiff
path: root/scripts/fuzz_opt.py
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2022-11-07 07:43:45 -0800
committerGitHub <noreply@github.com>2022-11-07 07:43:45 -0800
commit64337813150d698cddcf588994a9c26f678defca (patch)
treed6d8350b5c94dd731854b918022ef48d8d87ef0a /scripts/fuzz_opt.py
parent20115c8e2a038646858a0408beca7be319c31035 (diff)
downloadbinaryen-64337813150d698cddcf588994a9c26f678defca.tar.gz
binaryen-64337813150d698cddcf588994a9c26f678defca.tar.bz2
binaryen-64337813150d698cddcf588994a9c26f678defca.zip
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.
Diffstat (limited to 'scripts/fuzz_opt.py')
-rwxr-xr-xscripts/fuzz_opt.py2
1 files changed, 1 insertions, 1 deletions
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 = [