]> git.lizzy.rs Git - rust.git/commitdiff
rusti: Disable tests
authorBrian Anderson <banderson@mozilla.com>
Wed, 7 Aug 2013 04:20:03 +0000 (21:20 -0700)
committerBrian Anderson <banderson@mozilla.com>
Wed, 7 Aug 2013 23:32:20 +0000 (16:32 -0700)
Segfaulted on one of the bots. Maybe out of stack?

src/librusti/rusti.rs

index 6b61b099d23bec14fc68eeff4d4bab3e12a81a44..bb863df33481211c354b5519fb223be17cd2fe06 100644 (file)
@@ -579,16 +579,19 @@ fn run_program(prog: &str) {
     }
     fn run_program(_: &str) {}
 
+    #[ignore]
     #[test]
     fn super_basic() {
         run_program("");
     }
 
+    #[ignore]
     #[test]
     fn regression_5937() {
         run_program("use std::hashmap;");
     }
 
+    #[ignore]
     #[test]
     fn regression_5784() {
         run_program("let a = 3;");
@@ -604,6 +607,7 @@ fn new_tasks() {
         ");
     }
 
+    #[ignore]
     #[test]
     fn inferred_integers_usable() {
         run_program("let a = 2;\n()\n");
@@ -614,6 +618,7 @@ fn inferred_integers_usable() {
         ");
     }
 
+    #[ignore]
     #[test]
     fn local_variables_allow_shadowing() {
         run_program("
@@ -623,6 +628,7 @@ fn local_variables_allow_shadowing() {
         ");
     }
 
+    #[ignore]
     #[test]
     fn string_usable() {
         run_program("
@@ -634,6 +640,7 @@ fn string_usable() {
         ");
     }
 
+    #[ignore]
     #[test]
     fn vectors_usable() {
         run_program("
@@ -646,6 +653,7 @@ fn vectors_usable() {
         ");
     }
 
+    #[ignore]
     #[test]
     fn structs_usable() {
         run_program("
@@ -655,6 +663,7 @@ struct A{ a: int }
         ");
     }
 
+    #[ignore]
     #[test]
     fn mutable_variables_work() {
         run_program("
@@ -667,6 +676,7 @@ fn mutable_variables_work() {
         ");
     }
 
+    #[ignore]
     #[test]
     fn functions_saved() {
         run_program("
@@ -677,6 +687,7 @@ fn fib(x: int) -> int { if x < 2 {x} else { fib(x - 1) + fib(x - 2) } }
         ");
     }
 
+    #[ignore]
     #[test]
     fn modules_saved() {
         run_program("
@@ -685,6 +696,7 @@ mod b { pub fn foo() -> uint { 3 } }
         ");
     }
 
+    #[ignore]
     #[test]
     fn multiple_functions() {
         run_program("
@@ -694,6 +706,7 @@ fn f() {}
         ");
     }
 
+    #[ignore]
     #[test]
     fn multiple_items_same_name() {
         run_program("
@@ -706,6 +719,7 @@ fn f() {}
         ");
     }
 
+    #[ignore]
     #[test]
     fn simultaneous_definition_and_expression() {
         run_program("
@@ -713,6 +727,7 @@ fn simultaneous_definition_and_expression() {
         ");
     }
 
+    #[ignore]
     #[test]
     fn exit_quits() {
         let mut r = repl();