Skip to content

Commit f7db3cb

Browse files
committed
Disable test_map with miri on macOS.
HashMap doesn't work with miri on macOS yet because of rust-lang/miri#686
1 parent 59e9792 commit f7db3cb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1097,6 +1097,7 @@ mod tests {
10971097
assert_eq!(format!("{:?}", foo), "75");
10981098
}
10991099

1100+
#[cfg(not(all(target_os = "macos", miri)))]
11001101
#[test]
11011102
fn test_map() {
11021103
let mut map = std::collections::HashMap::new();

0 commit comments

Comments
 (0)