From 6cf4c95585433383053a1bd10f7540c9897b326c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 20 May 2022 09:57:56 -0500 Subject: [PATCH] Ensure `simd` is enabled for spectest fuzzing (#4172) This is required now that the simd specification has been merged into the upstream specification, so to run the spec tests this must always be enabled instead of being left to the whims of the fuzzer about whether to enable it or not. --- crates/fuzzing/src/generators.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/fuzzing/src/generators.rs b/crates/fuzzing/src/generators.rs index 71cc53b1e0..00f386d5d3 100644 --- a/crates/fuzzing/src/generators.rs +++ b/crates/fuzzing/src/generators.rs @@ -346,6 +346,7 @@ impl Config { config.bulk_memory_enabled = true; config.reference_types_enabled = true; config.multi_value_enabled = true; + config.simd_enabled = true; config.max_memories = 1; config.max_tables = 5;