Skip to content

Commit 907d2c7

Browse files
committed
rustc rust-lang#43457 got fixed, we can enable more tests
1 parent b6d0597 commit 907d2c7

File tree

7 files changed

+0
-21
lines changed

7 files changed

+0
-21
lines changed

tests/compile-fail/memleak_rc.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
2-
// compile-flags: -Zmir-emit-validate=0
3-
41
//error-pattern: the evaluated program leaked memory
52

63
use std::rc::Rc;

tests/compile-fail/panic.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
2-
// compile-flags: -Zmir-emit-validate=0
3-
41
//error-pattern: the evaluated program panicked
52

63
fn main() {

tests/compile-fail/zst2.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
2-
// compile-flags: -Zmir-emit-validate=0
3-
41
// error-pattern: the evaluated program panicked
52

63
#[derive(Debug)]

tests/compile-fail/zst3.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
2-
// compile-flags: -Zmir-emit-validate=0
3-
41
// error-pattern: the evaluated program panicked
52

63
#[derive(Debug)]

tests/run-pass/rc.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
2-
// compile-flags: -Zmir-emit-validate=0
3-
41
use std::cell::RefCell;
52
use std::rc::Rc;
63

tests/run-pass/send-is-not-static-par-for.rs

-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010

1111
//ignore-windows
1212

13-
// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
14-
// compile-flags: -Zmir-emit-validate=0
15-
1613
use std::sync::Mutex;
1714

1815
fn par_for<I, F>(iter: I, f: F)

tests/run-pass/std.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// FIXME: Due to https://github.com/rust-lang/rust/issues/43457 we have to disable validation
2-
// compile-flags: -Zmir-emit-validate=0
3-
41
use std::cell::{Cell, RefCell};
52
use std::rc::Rc;
63
use std::sync::Arc;

0 commit comments

Comments
 (0)