about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-07-04 01:39:02 +0200
committerGitHub <noreply@github.com>2019-07-04 01:39:02 +0200
commit144ed029c5aa190d16475d19495f170051ec7d46 (patch)
tree45fe4be125e52366bd645178af380c24c3a60f39 /src/liballoc
parent839e89c3d113ac80bc1bdc9383a3cd64ba4e9582 (diff)
parent4dd5edc76ddf4ceebc1b2b4815028b04bb9cc21e (diff)
downloadrust-144ed029c5aa190d16475d19495f170051ec7d46.tar.gz
rust-144ed029c5aa190d16475d19495f170051ec7d46.zip
Rollup merge of #62346 - RalfJung:miri-tests, r=Centril
enable a few more tests in Miri and update the comment for others
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/tests/vec.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/liballoc/tests/vec.rs b/src/liballoc/tests/vec.rs
index 5ddac673c9f..e0c724f557b 100644
--- a/src/liballoc/tests/vec.rs
+++ b/src/liballoc/tests/vec.rs
@@ -761,7 +761,6 @@ fn from_into_inner() {
     it.next().unwrap();
     let vec = it.collect::<Vec<_>>();
     assert_eq!(vec, [2, 3]);
-    #[cfg(not(miri))] // Miri does not support comparing dangling pointers
     assert!(ptr != vec.as_ptr());
 }