Skip to content

Commit 04b1dba

Browse files
committed
rusti: disable tests on 32bit mac. r=burningtree.
1 parent 2e41689 commit 04b1dba

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/librusti/rusti.rc

+6
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,9 @@ mod tests {
537537
}
538538

539539
#[test]
540+
// FIXME: #7220 rusti on 32bit mac doesn't work.
541+
#[cfg(not(and(target_word_size=32,
542+
target_os="mac")))]
540543
fn run_all() {
541544
// FIXME(#7071):
542545
// By default, unit tests are run in parallel. Rusti, on the other hand,
@@ -648,6 +651,9 @@ mod tests {
648651
}
649652

650653
#[test]
654+
// FIXME: #7220 rusti on 32bit mac doesn't work.
655+
#[cfg(not(and(target_word_size=32,
656+
target_os="mac")))]
651657
fn exit_quits() {
652658
let mut r = repl();
653659
assert!(r.running);

0 commit comments

Comments
 (0)