about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Schneider <oli-obk@users.noreply.github.com>2017-08-28 15:37:10 +0200
committerGitHub <noreply@github.com>2017-08-28 15:37:10 +0200
commit385b5b9fd138a9d27d05c21876665fdc5dca052a (patch)
treea9a59063b49dd176107e30694c42d49596a6f390
parent9d10e0154b1779106f2a8133dabde14d0ba8ac99 (diff)
parentb93462a8db2794151a653cc0c01c87216c0c3457 (diff)
downloadrust-385b5b9fd138a9d27d05c21876665fdc5dca052a.tar.gz
rust-385b5b9fd138a9d27d05c21876665fdc5dca052a.zip
Merge branch 'master' into priroda
-rw-r--r--tests/compile-fail/memleak_rc.rs3
-rw-r--r--tests/compile-fail/panic.rs3
-rw-r--r--tests/compile-fail/zst2.rs3
-rw-r--r--tests/compile-fail/zst3.rs3
-rw-r--r--tests/run-pass/rc.rs3
-rw-r--r--tests/run-pass/send-is-not-static-par-for.rs3
-rw-r--r--tests/run-pass/std.rs3
7 files changed, 3 insertions, 18 deletions
diff --git a/tests/compile-fail/memleak_rc.rs b/tests/compile-fail/memleak_rc.rs
index ee245daa310..b2bc6722afb 100644
--- a/tests/compile-fail/memleak_rc.rs
+++ b/tests/compile-fail/memleak_rc.rs
@@ -1,6 +1,3 @@
-// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
-// compile-flags: -Zmir-emit-validate=0
-
 //error-pattern: the evaluated program leaked memory
 
 use std::rc::Rc;
diff --git a/tests/compile-fail/panic.rs b/tests/compile-fail/panic.rs
index dbe80fecd00..4247cdaa463 100644
--- a/tests/compile-fail/panic.rs
+++ b/tests/compile-fail/panic.rs
@@ -1,6 +1,5 @@
-// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
+// FIXME: Probably failing due to https://github.com/solson/miri/issues/296
 // compile-flags: -Zmir-emit-validate=0
-
 //error-pattern: the evaluated program panicked
 
 fn main() {
diff --git a/tests/compile-fail/zst2.rs b/tests/compile-fail/zst2.rs
index 0c46acb8ade..fa4ae9afdf6 100644
--- a/tests/compile-fail/zst2.rs
+++ b/tests/compile-fail/zst2.rs
@@ -1,6 +1,5 @@
-// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
+// FIXME: Probably failing due to https://github.com/solson/miri/issues/296
 // compile-flags: -Zmir-emit-validate=0
-
 // error-pattern: the evaluated program panicked
 
 #[derive(Debug)]
diff --git a/tests/compile-fail/zst3.rs b/tests/compile-fail/zst3.rs
index a6d7fdd3552..320541552fb 100644
--- a/tests/compile-fail/zst3.rs
+++ b/tests/compile-fail/zst3.rs
@@ -1,6 +1,5 @@
-// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
+// FIXME: Probably failing due to https://github.com/solson/miri/issues/296
 // compile-flags: -Zmir-emit-validate=0
-
 // error-pattern: the evaluated program panicked
 
 #[derive(Debug)]
diff --git a/tests/run-pass/rc.rs b/tests/run-pass/rc.rs
index ba1ef6d7043..c6de3675abe 100644
--- a/tests/run-pass/rc.rs
+++ b/tests/run-pass/rc.rs
@@ -1,6 +1,3 @@
-// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
-// compile-flags: -Zmir-emit-validate=0
-
 use std::cell::RefCell;
 use std::rc::Rc;
 
diff --git a/tests/run-pass/send-is-not-static-par-for.rs b/tests/run-pass/send-is-not-static-par-for.rs
index 19ff4b30db1..4ac1b5436f5 100644
--- a/tests/run-pass/send-is-not-static-par-for.rs
+++ b/tests/run-pass/send-is-not-static-par-for.rs
@@ -10,9 +10,6 @@
 
 //ignore-windows
 
-// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
-// compile-flags: -Zmir-emit-validate=0
-
 use std::sync::Mutex;
 
 fn par_for<I, F>(iter: I, f: F)
diff --git a/tests/run-pass/std.rs b/tests/run-pass/std.rs
index b15307bb48d..e0e23812d27 100644
--- a/tests/run-pass/std.rs
+++ b/tests/run-pass/std.rs
@@ -1,6 +1,3 @@
-// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
-// compile-flags: -Zmir-emit-validate=0
-
 use std::cell::{Cell, RefCell};
 use std::rc::Rc;
 use std::sync::Arc;