We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6809d54 commit 90ab791Copy full SHA for 90ab791
crates/fuzzing/src/generators/config.rs
@@ -229,6 +229,7 @@ impl Config {
229
pooling.component_instance_size = pooling
230
.component_instance_size
231
.max(limits::CORE_INSTANCE_SIZE);
232
+ pooling.total_stacks = pooling.total_stacks.max(limits::TOTAL_STACKS);
233
}
234
235
// Return the test configuration that this fuzz configuration represents
crates/test-util/src/wast.rs
@@ -25,6 +25,7 @@ pub mod limits {
25
pub const CORE_INSTANCES: u32 = 900;
26
pub const TABLE_ELEMENTS: usize = 1000;
27
pub const CORE_INSTANCE_SIZE: usize = 64 * 1024;
28
+ pub const TOTAL_STACKS: u32 = 10;
29
30
31
/// Local all `*.wast` tests under `root` which should be the path to the root
0 commit comments