Revert "Temporarily disable SIMD fuzzing on CI" (#3555)

This reverts commit 95e8723d0767556f0ddbc9151bce269464852bb1.
This commit is contained in:
Alex Crichton
2021-11-19 14:33:11 -06:00
committed by GitHub
parent 21bce8071e
commit e08bcd6aad
3 changed files with 8 additions and 1 deletions

View File

@@ -213,6 +213,12 @@ 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,6 +40,7 @@ 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)