]> git.lizzy.rs Git - rust.git/commitdiff
rusti: disable tests on 32bit mac. r=burningtree.
authorGraydon Hoare <graydon@mozilla.com>
Tue, 18 Jun 2013 23:43:49 +0000 (16:43 -0700)
committerGraydon Hoare <graydon@mozilla.com>
Tue, 18 Jun 2013 23:43:49 +0000 (16:43 -0700)
src/librusti/rusti.rc

index 0af6ed724e1dafeb66edfb3b3ec24244ecfb42a2..a67915fbc8516b491d860144a67c8f923ad4eb01 100644 (file)
@@ -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,
@@ -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);