about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-08-06 21:20:03 -0700
committerBrian Anderson <banderson@mozilla.com>2013-08-07 16:32:20 -0700
commit52a37b63f4acab98c48159accccd9d6e885aeec1 (patch)
treeb51981ac307e6795ad17a917492910f5c5aeb1c0
parentce95b01014391f29a655d165d9e6d31449ceb835 (diff)
downloadrust-52a37b63f4acab98c48159accccd9d6e885aeec1.tar.gz
rust-52a37b63f4acab98c48159accccd9d6e885aeec1.zip
rusti: Disable tests
Segfaulted on one of the bots. Maybe out of stack?
-rw-r--r--src/librusti/rusti.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/librusti/rusti.rs b/src/librusti/rusti.rs
index 6b61b099d23..bb863df3348 100644
--- a/src/librusti/rusti.rs
+++ b/src/librusti/rusti.rs
@@ -579,16 +579,19 @@ mod tests {
     }
     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 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn inferred_integers_usable() {
         run_program("let a = 2;\n()\n");
@@ -614,6 +618,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn local_variables_allow_shadowing() {
         run_program("
@@ -623,6 +628,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn string_usable() {
         run_program("
@@ -634,6 +640,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn vectors_usable() {
         run_program("
@@ -646,6 +653,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn structs_usable() {
         run_program("
@@ -655,6 +663,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn mutable_variables_work() {
         run_program("
@@ -667,6 +676,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn functions_saved() {
         run_program("
@@ -677,6 +687,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn modules_saved() {
         run_program("
@@ -685,6 +696,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn multiple_functions() {
         run_program("
@@ -694,6 +706,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn multiple_items_same_name() {
         run_program("
@@ -706,6 +719,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn simultaneous_definition_and_expression() {
         run_program("
@@ -713,6 +727,7 @@ mod tests {
         ");
     }
 
+    #[ignore]
     #[test]
     fn exit_quits() {
         let mut r = repl();