diff options
author | Alon Zakai <azakai@google.com> | 2022-05-27 08:47:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 15:47:21 +0000 |
commit | ac2190c1bd1a0be12a1d25e62695f791f270d050 (patch) | |
tree | 712f91c4a40aa51e3c63df582f82167dced8e2ad | |
parent | 590af8639ab4f6cfd82452b5ff2b431b470c64a5 (diff) | |
download | binaryen-ac2190c1bd1a0be12a1d25e62695f791f270d050.tar.gz binaryen-ac2190c1bd1a0be12a1d25e62695f791f270d050.tar.bz2 binaryen-ac2190c1bd1a0be12a1d25e62695f791f270d050.zip |
Fuzzer: Pass v8 flag for extended-const (#4543)
This flag is needed now that we have testcases using extended-const
in our test suite, as the fuzzer will grab random testcases, modify them,
and run them through v8.
-rw-r--r-- | scripts/test/shared.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index d86d802d3..1764f56ba 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -261,7 +261,8 @@ V8_OPTS = [ '--experimental-wasm-compilation-hints', '--experimental-wasm-gc', '--experimental-wasm-typed-funcref', - '--experimental-wasm-memory64' + '--experimental-wasm-memory64', + '--experimental-wasm-extended-const' ] # external tools |