Skip to content

Commit 4b9c2a4

Browse files
committed
Temporarily disable SIMD fuzzing with v8 on CI
We've got a large crop of fuzz-bugs from fuzzing with v8-enabled-with-SIMD on CI but at this point the fuzz stats from oss-fuzz say that the fuzzer is spending less than 50% of its time actually fuzzing and presumably mostly hitting crashes and such. While we fix the other issues this disables simd for fuzzing with v8 so we can try to see if we can weed out other issues.
1 parent 3735453 commit 4b9c2a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/fuzz_targets/differential_v8.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use wasmtime_fuzzing::{generators, oracles};
55

66
fuzz_target!(|data: (
77
generators::Config,
8-
wasm_smith::ConfiguredModule<oracles::SingleFunctionModuleConfig<true, true>>
8+
wasm_smith::ConfiguredModule<oracles::SingleFunctionModuleConfig<false, true>>
99
)| {
1010
let (config, mut wasm) = data;
1111
wasm.module.ensure_termination(1000);

0 commit comments

Comments
 (0)