diff options
author | Alon Zakai <azakai@google.com> | 2019-07-03 15:29:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-03 15:29:31 -0700 |
commit | 256187c823ab6a04b3b55c3d9d3497ae2004d165 (patch) | |
tree | 72307593bbc38e4dd21d8338c53c9e31fee1ab1e /scripts/fuzz_opt.py | |
parent | f82e708ee048d5a17d9cf04d205985b32719276e (diff) | |
download | binaryen-256187c823ab6a04b3b55c3d9d3497ae2004d165.tar.gz binaryen-256187c823ab6a04b3b55c3d9d3497ae2004d165.tar.bz2 binaryen-256187c823ab6a04b3b55c3d9d3497ae2004d165.zip |
Use v8 to test wasm binaries are valid in test suite binary checks (#2206)
Diffstat (limited to 'scripts/fuzz_opt.py')
-rw-r--r-- | scripts/fuzz_opt.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index bea4635ac..ead591317 100644 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -21,7 +21,7 @@ import re import shutil import time -from test.shared import options, NODEJS +from test.shared import options, NODEJS, V8_OPTS # parameters @@ -32,18 +32,6 @@ FEATURE_OPTS = [] # '--all-features' etc FUZZ_OPTS = [] -V8_OPTS = [ - '--experimental-wasm-eh', - '--experimental-wasm-mv', - '--experimental-wasm-sat-f2i-conversions', - '--experimental-wasm-se', - '--experimental-wasm-threads', - '--experimental-wasm-simd', - '--experimental-wasm-anyref', - '--experimental-wasm-bulk-memory', - '--experimental-wasm-return-call' -] - INPUT_SIZE_LIMIT = 150 * 1024 LOG_LIMIT = 125 |