Skip to content

Commit

Permalink
Fix bug in differential fuzzer non-determinism detection (#1258)
Browse files Browse the repository at this point in the history
fix bug in differential fuzzer non-determinism detection
  • Loading branch information
Robbepop authored Oct 26, 2024
1 parent 93e8898 commit 9e50ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/differential.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fuzz_target!(|seed: &[u8]| {
continue;
}
}
if let Err(oracle_err) = &result_wasmi {
if let Err(oracle_err) = &result_oracle {
if oracle_err.is_non_deterministic() {
deterministic = false;
continue;
Expand Down

0 comments on commit 9e50ad2

Please sign in to comment.