about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-02-04 14:19:19 -0800
committerBrian Anderson <banderson@mozilla.com>2013-02-04 14:19:19 -0800
commit8dfab498ef21d332a50c36059db7eacabb58cbcb (patch)
tree918d68e367974ec78ffe8dda641c9e4037fc762b
parente08a805b306398b316a489f76960569ac19b25b2 (diff)
downloadrust-8dfab498ef21d332a50c36059db7eacabb58cbcb.tar.gz
rust-8dfab498ef21d332a50c36059db7eacabb58cbcb.zip
Ignore test exclusive_unwrap_conflict. #4689
-rw-r--r--src/libcore/private.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/private.rs b/src/libcore/private.rs
index 1fb8166ed12..40194713365 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());