diff options
| author | Oliver Schneider <oli-obk@users.noreply.github.com> | 2017-08-28 15:37:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-28 15:37:10 +0200 |
| commit | 385b5b9fd138a9d27d05c21876665fdc5dca052a (patch) | |
| tree | a9a59063b49dd176107e30694c42d49596a6f390 | |
| parent | 9d10e0154b1779106f2a8133dabde14d0ba8ac99 (diff) | |
| parent | b93462a8db2794151a653cc0c01c87216c0c3457 (diff) | |
| download | rust-385b5b9fd138a9d27d05c21876665fdc5dca052a.tar.gz rust-385b5b9fd138a9d27d05c21876665fdc5dca052a.zip | |
Merge branch 'master' into priroda
| -rw-r--r-- | tests/compile-fail/memleak_rc.rs | 3 | ||||
| -rw-r--r-- | tests/compile-fail/panic.rs | 3 | ||||
| -rw-r--r-- | tests/compile-fail/zst2.rs | 3 | ||||
| -rw-r--r-- | tests/compile-fail/zst3.rs | 3 | ||||
| -rw-r--r-- | tests/run-pass/rc.rs | 3 | ||||
| -rw-r--r-- | tests/run-pass/send-is-not-static-par-for.rs | 3 | ||||
| -rw-r--r-- | tests/run-pass/std.rs | 3 |
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; |
