From 514e8ded2fc4666365d99d959626130bab6e6b6e Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Tue, 19 Jun 2012 18:03:28 -0700 Subject: [PATCH] Temporarily ignoring tests that can go into infinite loops. --- src/libcore/arc.rs | 1 + src/libcore/sys.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/libcore/arc.rs b/src/libcore/arc.rs index eb11c8f1c540..a6baae0d082b 100644 --- a/src/libcore/arc.rs +++ b/src/libcore/arc.rs @@ -206,6 +206,7 @@ mod tests { } #[test] + #[ignore] // this can probably infinite loop too. fn exclusive_arc() { let mut futures = []; diff --git a/src/libcore/sys.rs b/src/libcore/sys.rs index af93009874f0..1e4e5b17bb95 100644 --- a/src/libcore/sys.rs +++ b/src/libcore/sys.rs @@ -173,6 +173,7 @@ mod tests { } #[test] + #[ignore] // this can go into infinite loops fn condition_variable() { let lock = arc::arc(create_lock()); let lock2 = arc::clone(&lock);