Skip to content

Commit a48b2cc

Browse files
committed
disable validation for some tests that need further investigation
1 parent 942204e commit a48b2cc

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

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

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// FIXME: Still investigating whether there is UB here
12+
// compile-flags: -Zmiri-disable-validation
13+
1114
use std::sync::Mutex;
1215

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

tests/run-pass-fullmir/u128.rs

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// FIXME: Still investigating whether there is UB here
12+
// compile-flags: -Zmiri-disable-validation
13+
1114
fn b<T>(t: T) -> T { t }
1215

1316
fn main() {

tests/run-pass-fullmir/vecdeque.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// FIXME: Still investigating whether there is UB here
2+
// compile-flags: -Zmiri-disable-validation
3+
14
use std::collections::VecDeque;
25

36
fn main() {

0 commit comments

Comments
 (0)