Rollup merge of #73957 - RalfJung:btree-min-max, r=shepmaster

disable BTree min_max test in Miri for now

Until https://github.com/rust-lang/rust/issues/73915 is fixed, better skip this test in Miri so that we can test the others at least.
This commit is contained in:
Manish Goregaokar 2020-07-02 15:56:01 -07:00 committed by GitHub
commit 5702b27fcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -310,6 +310,7 @@ fn test_iter_mixed() {
}
#[test]
#[cfg_attr(miri, ignore)] // FIXME: fails in Miri <https://github.com/rust-lang/rust/issues/73915>
fn test_iter_min_max() {
let mut a = BTreeMap::new();
assert_eq!(a.iter().min(), None);