From fb2765eebd33fbc0218c51313b629a079a09d9fc Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 18 Jun 2013 22:17:58 -0700 Subject: [PATCH] rusti: Disable tests on macos harder --- src/librusti/rusti.rc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/librusti/rusti.rc b/src/librusti/rusti.rc index a67915fbc85..c618623a2cb 100644 --- a/src/librusti/rusti.rc +++ b/src/librusti/rusti.rc @@ -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, @@ -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); -- GitLab