Skip to content

Commit 6f73ad6

Browse files
authored
Fix FuzzExec fuzzer, which forgot to run the opts (#2215) [ci skip]
1 parent 03f3528 commit 6f73ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/fuzz_opt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def compare_vs(self, before, after):
205205
class FuzzExec(TestCaseHandler):
206206
def handle_pair(self, before_wasm, after_wasm, opts):
207207
# fuzz binaryen interpreter itself. separate invocation so result is easily fuzzable
208-
run_bynterp(before_wasm, ['--fuzz-exec', '--fuzz-binary'])
208+
run_bynterp(before_wasm, ['--fuzz-exec', '--fuzz-binary'] + opts)
209209

210210

211211
# Check for determinism - the same command must have the same output

0 commit comments

Comments
 (0)