Skip to content

Commit 3ad7eec

Browse files
committed
update Miri comments
1 parent 22e5417 commit 3ad7eec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/map.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2883,7 +2883,7 @@ mod test_map {
28832883
}
28842884

28852885
#[test]
2886-
#[cfg(not(miri))] // FIXME: https://github.com/rust-lang/miri/issues/654
2886+
#[cfg(not(miri))] // FIXME: takes too long
28872887
fn test_lots_of_insertions() {
28882888
let mut m = HashMap::new();
28892889

@@ -3377,7 +3377,6 @@ mod test_map {
33773377

33783378
let mut m = HashMap::new();
33793379

3380-
// FIXME: https://github.com/rust-lang/miri/issues/653
33813380
let mut rng = {
33823381
let seed = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16];
33833382
SmallRng::from_seed(seed)
@@ -3491,7 +3490,7 @@ mod test_map {
34913490
}
34923491

34933492
#[test]
3494-
#[cfg(not(miri))] // FIXME: https://github.com/rust-lang/miri/issues/655
3493+
#[cfg(not(miri))] // FIXME: no OOM signalling (https://github.com/rust-lang/miri/issues/613)
34953494
fn test_try_reserve() {
34963495
let mut empty_bytes: HashMap<u8, u8> = HashMap::new();
34973496

0 commit comments

Comments
 (0)