Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/fuzzing/src/generators/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ impl Config {
pooling.component_instance_size = pooling
.component_instance_size
.max(limits::CORE_INSTANCE_SIZE);
pooling.total_stacks = pooling.total_stacks.max(limits::TOTAL_STACKS);
}

// Return the test configuration that this fuzz configuration represents
Expand Down
1 change: 1 addition & 0 deletions crates/test-util/src/wast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pub mod limits {
pub const CORE_INSTANCES: u32 = 900;
pub const TABLE_ELEMENTS: usize = 1000;
pub const CORE_INSTANCE_SIZE: usize = 64 * 1024;
pub const TOTAL_STACKS: u32 = 10;
}

/// Local all `*.wast` tests under `root` which should be the path to the root
Expand Down