Skip to content

Commit

Permalink
disable miri in fuzzing
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Oct 27, 2023
1 parent a8c074e commit 9ae81aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ unsafe fn invalid_hex_error(input: &[u8]) -> FromHexError {
}

#[allow(missing_docs, unused)]
#[cfg(feature = "__fuzzing")]
#[cfg(all(feature = "__fuzzing", not(miri)))]
pub mod fuzzing {
use proptest::test_runner::TestCaseResult;
use proptest::{prop_assert, prop_assert_eq};
Expand Down

0 comments on commit 9ae81aa

Please sign in to comment.