From 907f5b46729f646b037727751885fdc04ef62560 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 21 Aug 2012 20:49:35 -0700 Subject: [PATCH] ignore should_fail tests on windows --- src/libcore/managed.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libcore/managed.rs b/src/libcore/managed.rs index 47d5d7f7cdd..7733663f769 100644 --- a/src/libcore/managed.rs +++ b/src/libcore/managed.rs @@ -62,6 +62,7 @@ impl Data { } #[test] +#[ignore(cfg(windows))] #[should_fail] fn test_mut_in_imm() { let m = Managed(1); @@ -73,6 +74,7 @@ fn test_mut_in_imm() { } #[test] +#[ignore(cfg(windows))] #[should_fail] fn test_imm_in_mut() { let m = Managed(1); @@ -129,6 +131,7 @@ fn test_const_in_imm() { #[test] +#[ignore(cfg(windows))] #[should_fail] fn test_mut_in_imm_in_const() { let m = Managed(1);