about summary refs log tree commit diff
path: root/src/liballoc/tests
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2020-07-02 10:25:04 +0200
committerRalf Jung <post@ralfj.de>2020-07-02 10:26:37 +0200
commitdca9310ceb495ae2d5c6c775c151d75202e686d7 (patch)
tree39e16269f26f125faf8ae9bc9f6b839450e84eaa /src/liballoc/tests
parent9491f18c5de3ff1c4bf9c3fdacf52d9859e26f7c (diff)
downloadrust-dca9310ceb495ae2d5c6c775c151d75202e686d7.tar.gz
rust-dca9310ceb495ae2d5c6c775c151d75202e686d7.zip
disable BTree min_max test in Miri for now
Diffstat (limited to 'src/liballoc/tests')
-rw-r--r--src/liballoc/tests/btree/map.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/tests/btree/map.rs b/src/liballoc/tests/btree/map.rs
index 682d829d219..f66b5814ca0 100644
--- a/src/liballoc/tests/btree/map.rs
+++ b/src/liballoc/tests/btree/map.rs
@@ -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);