From a981ab157e80cf2674b0e8e7fb3443d38dcba6c5 Mon Sep 17 00:00:00 2001 From: stevenfontanella Date: Thu, 30 Apr 2026 22:44:37 +0000 Subject: [PATCH] Enable fuzzing for relaxed atomics --- scripts/bundle_clusterfuzz.py | 1 - scripts/clusterfuzz/run.py | 3 +-- scripts/fuzz_opt.py | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/bundle_clusterfuzz.py b/scripts/bundle_clusterfuzz.py index 3d90e76bcc5..86ea91a11d5 100755 --- a/scripts/bundle_clusterfuzz.py +++ b/scripts/bundle_clusterfuzz.py @@ -109,7 +109,6 @@ '--disable-fp16', '--disable-strings', '--disable-stack-switching', - '--disable-relaxed-atomics', '--disable-multibyte', '--disable-wide-arithmetic', ] diff --git a/scripts/clusterfuzz/run.py b/scripts/clusterfuzz/run.py index b155d656f25..7fe9979b3d2 100755 --- a/scripts/clusterfuzz/run.py +++ b/scripts/clusterfuzz/run.py @@ -33,7 +33,7 @@ # 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' +FUZZER_FLAGS = '--wasm-staging --experimental-wasm-custom-descriptors --experimental-wasm-js-interop --experimental-wasm-acquire-release' # Optional V8 flags to add to FUZZER_FLAGS, some of the time. OPTIONAL_FUZZER_FLAGS = [ @@ -94,7 +94,6 @@ '--disable-fp16', '--disable-strings', '--disable-stack-switching', - '--disable-relaxed-atomics', '--disable-wide-arithmetic', ] diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index b002151e0f2..b4037e69ff6 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -75,7 +75,6 @@ 'fp16', 'strings', 'stack-switching', - 'relaxed-atomics', 'multibyte', 'wide-arithmetic', ]