Skip to content

Commit 5702b27

Browse files
authored
Rollup merge of rust-lang#73957 - RalfJung:btree-min-max, r=shepmaster
disable BTree min_max test in Miri for now Until rust-lang#73915 is fixed, better skip this test in Miri so that we can test the others at least.
2 parents 441dd5a + dca9310 commit 5702b27

File tree

1 file changed

+1
-0
lines changed
  • src/liballoc/tests/btree

1 file changed

+1
-0
lines changed

src/liballoc/tests/btree/map.rs

+1
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ fn test_iter_mixed() {
310310
}
311311

312312
#[test]
313+
#[cfg_attr(miri, ignore)] // FIXME: fails in Miri <https://github.com/rust-lang/rust/issues/73915>
313314
fn test_iter_min_max() {
314315
let mut a = BTreeMap::new();
315316
assert_eq!(a.iter().min(), None);

0 commit comments

Comments
 (0)