Skip to content

Commit

Permalink
rusti: disable tests on 32bit mac. r=burningtree.
Browse files Browse the repository at this point in the history
  • Loading branch information
graydon committed Jun 18, 2013
1 parent 2e41689 commit 04b1dba
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/librusti/rusti.rc
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,9 @@ mod tests {
}

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

#[test]
// FIXME: #7220 rusti on 32bit mac doesn't work.
#[cfg(not(and(target_word_size=32,
target_os="mac")))]
fn exit_quits() {
let mut r = repl();
assert!(r.running);
Expand Down

0 comments on commit 04b1dba

Please sign in to comment.