diff options
author | Alon Zakai <azakai@google.com> | 2021-03-04 19:09:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 11:09:55 -0800 |
commit | 4a98c9a5d6061bf40c35ff5a5dce4c08606d6801 (patch) | |
tree | e0892ef8e83bbb9a4ae91e315c94cee8ede836ae | |
parent | 13c0243251f06730e9d9330f4c60f0bc62c591ac (diff) | |
download | binaryen-4a98c9a5d6061bf40c35ff5a5dce4c08606d6801.tar.gz binaryen-4a98c9a5d6061bf40c35ff5a5dce4c08606d6801.tar.bz2 binaryen-4a98c9a5d6061bf40c35ff5a5dce4c08606d6801.zip |
Stop emitting features section in fuzzer (#3652)
-rwxr-xr-x | 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 de67ede9f..94db99e05 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -857,7 +857,7 @@ def test_one(random_input, given_wasm): else: # emit the target features section so that reduction can work later, # without needing to specify the features - generate_command = [in_bin('wasm-opt'), random_input, '-ttf', '-o', 'a.wasm', '--emit-target-features'] + FUZZ_OPTS + FEATURE_OPTS + generate_command = [in_bin('wasm-opt'), random_input, '-ttf', '-o', 'a.wasm'] + FUZZ_OPTS + FEATURE_OPTS if INITIAL_CONTENTS: generate_command += ['--initial-fuzz=' + INITIAL_CONTENTS] if PRINT_WATS: |