Increase minimum instance threshold for spectests fuzzer (#3935)
Looks like `const.wast` needs a lot of instances
This commit is contained in:
@@ -362,7 +362,7 @@ impl Config {
|
|||||||
limits.tables = limits.memories.max(5);
|
limits.tables = limits.memories.max(5);
|
||||||
limits.table_elements = limits.memories.max(1_000);
|
limits.table_elements = limits.memories.max(1_000);
|
||||||
limits.memory_pages = limits.memory_pages.max(900);
|
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);
|
limits.size = limits.size.max(4096);
|
||||||
|
|
||||||
match &mut self.wasmtime.memory_config {
|
match &mut self.wasmtime.memory_config {
|
||||||
|
|||||||
Reference in New Issue
Block a user