about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-06-18 22:17:58 -0700
committerBrian Anderson <banderson@mozilla.com>2013-06-18 22:17:58 -0700
commitfb2765eebd33fbc0218c51313b629a079a09d9fc (patch)
tree4010f04246012cad998c8638142618cd898095ad
parent7f55fc33f08a7ec5df0d06b4b0543bc864e60640 (diff)
downloadrust-fb2765eebd33fbc0218c51313b629a079a09d9fc.tar.gz
rust-fb2765eebd33fbc0218c51313b629a079a09d9fc.zip
rusti: Disable tests on macos harder
-rw-r--r--src/librusti/rusti.rc8
1 files 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);