Skip to content

Commit

Permalink
Remove module linking support from fuzzer
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored and JakeChampion committed Apr 14, 2023
1 parent f7ffac0 commit 6eacb7e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions fuzz/fuzz_targets/same_result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ fuzz_target!(|module: wasm_smith::ConfiguredModule<WasmConfig>| {
// initialization routine.
let mut wizer = wizer::Wizer::new();
wizer
.wasm_module_linking(true)
.wasm_multi_memory(true)
.wasm_multi_value(true)
.init_func(init_func);
Expand Down Expand Up @@ -196,10 +195,6 @@ impl<'a> arbitrary::Arbitrary<'a> for WasmConfig {
}

impl wasm_smith::Config for WasmConfig {
fn module_linking_enabled(&self) -> bool {
true
}

fn max_memories(&self) -> usize {
10
}
Expand Down

0 comments on commit 6eacb7e

Please sign in to comment.