diff options
author | Alon Zakai <azakai@google.com> | 2019-07-11 09:40:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-11 09:40:19 -0700 |
commit | 6f73ad6e22b6be458f91c5ebe1f72cbcd6641264 (patch) | |
tree | a201b98666fd00f3bfe1badd65caf9d9bf1d839a /scripts/fuzz_opt.py | |
parent | 03f3528f2f216378537988d22c66e4e22d2ddda3 (diff) | |
download | binaryen-6f73ad6e22b6be458f91c5ebe1f72cbcd6641264.tar.gz binaryen-6f73ad6e22b6be458f91c5ebe1f72cbcd6641264.tar.bz2 binaryen-6f73ad6e22b6be458f91c5ebe1f72cbcd6641264.zip |
Fix FuzzExec fuzzer, which forgot to run the opts (#2215) [ci skip]
Diffstat (limited to 'scripts/fuzz_opt.py')
-rw-r--r-- | scripts/fuzz_opt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index dbaccb6df..7410d4262 100644 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -205,7 +205,7 @@ class CompareVMs(TestCaseHandler): class FuzzExec(TestCaseHandler): def handle_pair(self, before_wasm, after_wasm, opts): # fuzz binaryen interpreter itself. separate invocation so result is easily fuzzable - run_bynterp(before_wasm, ['--fuzz-exec', '--fuzz-binary']) + run_bynterp(before_wasm, ['--fuzz-exec', '--fuzz-binary'] + opts) # Check for determinism - the same command must have the same output |