Skip to content

Commit d5467ca

Browse files
committed
Disable wide-arithmetic fuzzing in wasmi
Due to bytecodealliance#10418 I believe there's a bug in wasmi for now, so disable temporarily until it's updated with a fix. Closes bytecodealliance#10418
1 parent 0a29578 commit d5467ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/fuzzing/src/oracles/diff_wasmi.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ impl WasmiEngine {
2020
config.exceptions_enabled = false;
2121
config.gc_enabled = false;
2222

23+
// FIXME: currently wasmi has a bug in wide-arithmetic (see #10418), so
24+
// disable it temporarily.
25+
config.wide_arithmetic_enabled = false;
26+
2327
let mut wasmi_config = wasmi::Config::default();
2428
wasmi_config
2529
.consume_fuel(false)

0 commit comments

Comments
 (0)