From 8dfab498ef21d332a50c36059db7eacabb58cbcb Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 4 Feb 2013 14:19:19 -0800 Subject: [PATCH] Ignore test exclusive_unwrap_conflict. #4689 --- src/libcore/private.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/private.rs b/src/libcore/private.rs index 1fb8166ed12dc..40194713365bc 100644 --- a/src/libcore/private.rs +++ b/src/libcore/private.rs @@ -486,7 +486,7 @@ pub mod tests { res.recv(); } - #[test] #[should_fail] #[ignore(cfg(windows))] + #[test] #[should_fail] #[ignore(reason = "random red")] pub fn exclusive_unwrap_conflict() { let x = exclusive(~~"hello"); let x2 = ~mut Some(x.clone());