Skip to content

Commit

Permalink
rusti: Disable tests on macos harder
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Jun 19, 2013
1 parent 7f55fc3 commit fb2765e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/librusti/rusti.rc
Original file line number Diff line number Diff line change
Expand Up @@ -538,8 +538,8 @@ mod tests {

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

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

0 comments on commit fb2765e

Please sign in to comment.