about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMichael Sullivan <sully@msully.net>2012-08-22 10:29:23 -0700
committerMichael Sullivan <sully@msully.net>2012-08-22 10:29:23 -0700
commite94c5420f4081f1edae00ca83f642a992b754a15 (patch)
tree007080f65fc61380f529de7c592dd78196189344 /src/libstd
parent907f5b46729f646b037727751885fdc04ef62560 (diff)
#[ignore(cfg(windows))] for a test I added to arena that involves failure.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/arena.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/arena.rs b/src/libstd/arena.rs
index 13f538db54f..ad75999b1d1 100644
--- a/src/libstd/arena.rs
+++ b/src/libstd/arena.rs
@@ -249,8 +249,7 @@ fn test_arena_destructors() {
     }
 }
 
-#[test]
-#[should_fail]
+#[test] #[should_fail] #[ignore(cfg(windows))]
 fn test_arena_destructors_fail() {
     let arena = arena::arena();
     // Put some stuff in the arena.