From fdf063df98ad3839b0e0b78ea55b53b1a296abb0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 16 Mar 2022 12:27:50 -0500 Subject: [PATCH] Increase minimum instance threshold for spectests fuzzer (#3935) Looks like `const.wast` needs a lot of instances --- crates/fuzzing/src/generators.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fuzzing/src/generators.rs b/crates/fuzzing/src/generators.rs index 601bf6f3cc..78d4afe817 100644 --- a/crates/fuzzing/src/generators.rs +++ b/crates/fuzzing/src/generators.rs @@ -362,7 +362,7 @@ impl Config { limits.tables = limits.memories.max(5); limits.table_elements = limits.memories.max(1_000); limits.memory_pages = limits.memory_pages.max(900); - limits.count = limits.count.max(40); + limits.count = limits.count.max(500); limits.size = limits.size.max(4096); match &mut self.wasmtime.memory_config {