diff options
author | Alon Zakai <azakai@google.com> | 2024-02-28 14:58:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-28 14:58:58 -0800 |
commit | ac62d282167f489766c7d0cba31feede2072c4bc (patch) | |
tree | 54adfec2eb22d5b15c0f5fb1b117bad1ff144312 | |
parent | 3085c62b30b6c9a2dcf9fe768b33fddbdbe89d51 (diff) | |
download | binaryen-ac62d282167f489766c7d0cba31feede2072c4bc.tar.gz binaryen-ac62d282167f489766c7d0cba31feede2072c4bc.tar.bz2 binaryen-ac62d282167f489766c7d0cba31feede2072c4bc.zip |
Fuzzing: Remove some obsolete experimental V8 flags (#6347)
Those flags were removed in V8 as the features are no longer experimental. This
PR removes some warnings from being logged (but V8 does not error on them).
-rw-r--r-- | scripts/test/shared.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 15c837b1d..ef3cea261 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -256,12 +256,8 @@ def has_shell_timeout(): V8_OPTS = [ '--wasm-staging', '--experimental-wasm-compilation-hints', - '--experimental-wasm-gc', - '--experimental-wasm-typed-funcref', '--experimental-wasm-memory64', - '--experimental-wasm-extended-const', '--experimental-wasm-stringref', - '--wasm-final-types', ] # external tools |