From 5cdaf3d08516a773f1099288ade5398aebdba848 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 22 Sep 2021 07:12:33 -0700 Subject: [PATCH] Disable simd in the instantiate-swarm target Something I forgot from #3376 --- fuzz/fuzz_targets/instantiate-swarm.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/fuzz/fuzz_targets/instantiate-swarm.rs b/fuzz/fuzz_targets/instantiate-swarm.rs index 676d6f780b..0ebc708580 100644 --- a/fuzz/fuzz_targets/instantiate-swarm.rs +++ b/fuzz/fuzz_targets/instantiate-swarm.rs @@ -25,7 +25,6 @@ fn run(data: &[u8]) -> Result<()> { // that aren't otherwise enabled by default. We want to test all of these in // Wasmtime. let mut config: SwarmConfig = u.arbitrary()?; - config.simd_enabled = u.arbitrary()?; config.module_linking_enabled = u.arbitrary()?; config.memory64_enabled = u.arbitrary()?; // Don't generate modules that allocate more than 6GB @@ -35,7 +34,6 @@ fn run(data: &[u8]) -> Result<()> { let mut cfg = wasmtime_fuzzing::fuzz_default_config(Strategy::Auto).unwrap(); cfg.wasm_multi_memory(config.max_memories > 1); cfg.wasm_module_linking(config.module_linking_enabled); - cfg.wasm_simd(config.simd_enabled); cfg.wasm_memory64(config.memory64_enabled); oracles::instantiate_with_config(&module.to_bytes(), true, cfg, timeout);