Temporarily disable SIMD fuzzing on CI (#3376)

We've got a large crop of fuzz-bugs from fuzzing with enabled-with-SIMD
on oss-fuzz but at this point the fuzz stats from oss-fuzz say that the
fuzzers like v8 are 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.
This commit is contained in:
Alex Crichton
2021-09-20 14:17:19 -05:00
committed by GitHub
parent 3735453afa
commit fc6328ae06
3 changed files with 1 additions and 8 deletions

View File

@@ -142,12 +142,6 @@ impl wasm_smith::Config for WasmtimeDefaultConfig {
4
}
// Turn some wasm features default-on for those that have a finished
// implementation in Wasmtime.
fn simd_enabled(&self) -> bool {
true
}
fn reference_types_enabled(&self) -> bool {
true
}

View File

@@ -40,7 +40,6 @@ pub fn fuzz_default_config(strategy: wasmtime::Strategy) -> anyhow::Result<wasmt
.wasm_reference_types(true)
.wasm_module_linking(true)
.wasm_multi_memory(true)
.wasm_simd(true)
.wasm_memory64(true)
.strategy(strategy)?;
Ok(config)