Skip to content

Commit 1594eba

Browse files
authored
Disable memory64 in the no_traps fuzzer (#1534)
Wasmtime doesn't implement the table64 extension so disable it here to get re-enabled once Wasmtime implements the full proposal again.
1 parent cb87499 commit 1594eba

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

fuzz/src/no_traps.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ pub fn run(u: &mut Unstructured<'_>) -> Result<()> {
1818
config.gc_enabled = false;
1919
config.max_memory32_pages = config.max_memory32_pages.min(100);
2020
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;
2125
Ok(())
2226
})?;
2327
validate_module(config.clone(), &wasm_bytes);

0 commit comments

Comments
 (0)