Skip to content

Commit dcc8843

Browse files
Enable fuzzing for relaxed atomics
1 parent 3c9c6f3 commit dcc8843

4 files changed

Lines changed: 2 additions & 4 deletions

File tree

scripts/bundle_clusterfuzz.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@
109109
'--disable-fp16',
110110
'--disable-strings',
111111
'--disable-stack-switching',
112-
'--disable-relaxed-atomics',
113112
'--disable-multibyte',
114113
'--disable-wide-arithmetic',
115114
]

scripts/clusterfuzz/run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
# The V8 flags we put in the "fuzzer flags" files, which tell ClusterFuzz how to
3535
# run V8. By default we apply all staging flags.
36-
FUZZER_FLAGS = '--wasm-staging --experimental-wasm-custom-descriptors --experimental-wasm-js-interop'
36+
FUZZER_FLAGS = '--wasm-staging --experimental-wasm-custom-descriptors --experimental-wasm-js-interop --experimental-wasm-acquire-release'
3737

3838
# Optional V8 flags to add to FUZZER_FLAGS, some of the time.
3939
OPTIONAL_FUZZER_FLAGS = [
@@ -94,7 +94,6 @@
9494
'--disable-fp16',
9595
'--disable-strings',
9696
'--disable-stack-switching',
97-
'--disable-relaxed-atomics',
9897
'--disable-wide-arithmetic',
9998
]
10099

scripts/fuzz_opt.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
'fp16',
7676
'strings',
7777
'stack-switching',
78-
'relaxed-atomics',
7978
'multibyte',
8079
'wide-arithmetic',
8180
]

scripts/test/shared.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ def has_shell_timeout():
254254
'--experimental-wasm-fp16',
255255
'--experimental-wasm-custom-descriptors',
256256
'--experimental-wasm-js-interop',
257+
'--experimental-wasm-acquire-release',
257258
]
258259

259260
# external tools

0 commit comments

Comments
 (0)