Increase instance size limit when fuzzing (#3943)

In today's installment of the Wondrous Adventures of What Are the Actual
Limits on the Pooling Allocator Required to Run the Spec Tests a fuzz
bug was found where the instance size wasn't big enough to run
`names.wast`. Today's episode is similar to prior episodes where a limit
is bumped until the test passes.
This commit is contained in:
Alex Crichton
2022-03-18 12:17:24 -05:00
committed by GitHub
parent 5f53fd5ca2
commit 8cfb552090

View File

@@ -363,7 +363,7 @@ impl Config {
limits.table_elements = limits.memories.max(1_000);
limits.memory_pages = limits.memory_pages.max(900);
limits.count = limits.count.max(500);
limits.size = limits.size.max(4096);
limits.size = limits.size.max(64 * 1024);
match &mut self.wasmtime.memory_config {
MemoryConfig::Normal(config) => {