We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb87499 commit 1594ebaCopy full SHA for 1594eba
1 file changed
fuzz/src/no_traps.rs
@@ -18,6 +18,10 @@ pub fn run(u: &mut Unstructured<'_>) -> Result<()> {
18
config.gc_enabled = false;
19
config.max_memory32_pages = config.max_memory32_pages.min(100);
20
config.max_memory64_pages = config.max_memory64_pages.min(100);
21
+
22
+ // NB: should re-enable once wasmtime implements the table64 extension
23
+ // to the memory64 proposal.
24
+ config.memory64_enabled = false;
25
Ok(())
26
})?;
27
validate_module(config.clone(), &wasm_bytes);
0 commit comments