Skip to content

Commit

Permalink
test: re-enable miri on foldhash (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Jan 4, 2025
1 parent 1b23968 commit 17b0d1c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions crates/primitives/src/map/fixed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ mod tests {
}

#[test]
#[cfg_attr(miri, ignore = "foldhash queries time (orlp/foldhash#4)")]
fn fb_hasher() {
// Just by running it once we test that it compiles and that debug assertions are correct.
ruint::const_for!(N in [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
Expand All @@ -215,7 +214,6 @@ mod tests {
}

#[test]
#[cfg_attr(miri, ignore = "foldhash queries time (orlp/foldhash#4)")]
fn map() {
let mut map = AddressHashMap::<bool>::default();
map.insert(Address::ZERO, true);
Expand Down
1 change: 0 additions & 1 deletion crates/primitives/src/map/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ mod tests {
use super::*;

#[test]
#[cfg_attr(miri, ignore = "foldhash queries time (orlp/foldhash#4)")]
fn default_hasher_builder_traits() {
let hash_builder = <DefaultHashBuilder as Default>::default();
let _hash_builder2 = <DefaultHashBuilder as Clone>::clone(&hash_builder);
Expand Down
1 change: 0 additions & 1 deletion tests/core-sol/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ sol! {
}

#[test]
#[cfg_attr(miri, ignore = "foldhash queries time (orlp/foldhash#4)")]
fn do_stuff() {
let mut set = alloy_core::primitives::map::HashSet::<MyStruct>::default();
set.insert(Default::default());
Expand Down

0 comments on commit 17b0d1c

Please sign in to comment.