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:
@@ -363,7 +363,7 @@ impl Config {
|
|||||||
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(500);
|
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 {
|
match &mut self.wasmtime.memory_config {
|
||||||
MemoryConfig::Normal(config) => {
|
MemoryConfig::Normal(config) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user