From: Brian Anderson Date: Wed, 7 Aug 2013 04:20:03 +0000 (-0700) Subject: rusti: Disable tests X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=52a37b63f4acab98c48159accccd9d6e885aeec1;p=rust.git rusti: Disable tests Segfaulted on one of the bots. Maybe out of stack? --- 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 @@ 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();