diff options
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r-- | scripts/test/shared.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index d9e3def46..681694e49 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -224,15 +224,13 @@ def has_shell_timeout(): # Default options to pass to v8. These enable all features. +# See https://github.com/v8/v8/blob/master/src/wasm/wasm-feature-flags.h V8_OPTS = [ + '--wasm-staging', '--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-compilation-hints', '--experimental-wasm-return-call' ] |