From 62923402dba3221b46a6b1922deb3adfd5998513 Mon Sep 17 00:00:00 2001 From: Matthias Liedtke Date: Tue, 22 Sep 2026 12:37:00 +0200 Subject: [PATCH] [scripts] Update name of experimental Wasm V8 flags --- scripts/clusterfuzz/run.py | 4 ++-- scripts/test/shared.py | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/clusterfuzz/run.py b/scripts/clusterfuzz/run.py index 2d6cfcaa03c..ba9827775ae 100755 --- a/scripts/clusterfuzz/run.py +++ b/scripts/clusterfuzz/run.py @@ -33,11 +33,11 @@ # The V8 flags we put in the "fuzzer flags" files, which tell ClusterFuzz how to # run V8. By default we apply all staging flags. -FUZZER_FLAGS = '--wasm-staging --experimental-wasm-custom-descriptors --experimental-wasm-js-interop --experimental-wasm-acquire-release --experimental-wasm-wide-arithmetic --wasm-compact-imports' +FUZZER_FLAGS = '--wasm-staging --wasm-custom-descriptors --wasm-js-interop --wasm-acquire-release --wasm-wide-arithmetic --wasm-compact-imports' # Optional V8 flags to add to FUZZER_FLAGS, some of the time. OPTIONAL_FUZZER_FLAGS = [ - '--experimental-wasm-revectorize', + '--wasm-revectorize', ] # Maximum size of the random data that we feed into wasm-opt -ttf. This is diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 0e65e159056..5bd6dc0ab89 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -315,13 +315,13 @@ def has_shell_timeout(): # See https://github.com/v8/v8/blob/master/src/wasm/wasm-feature-flags.h V8_OPTS = [ '--wasm-staging', - '--experimental-wasm-compilation-hints', - '--experimental-wasm-stringref', - '--experimental-wasm-fp16', - '--experimental-wasm-custom-descriptors', - '--experimental-wasm-js-interop', - '--experimental-wasm-acquire-release', - '--experimental-wasm-wide-arithmetic', + '--wasm-compilation-hints', + '--wasm-stringref', + '--wasm-fp16', + '--wasm-custom-descriptors', + '--wasm-js-interop', + '--wasm-acquire-release', + '--wasm-wide-arithmetic', '--wasm-compact-imports', ]