From 1eae49748d55367e7e70005b03ac2261b36122c9 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 5 Jul 2012 23:26:41 -0700 Subject: [PATCH] Ignore a should_fail test on windows --- src/libcore/int-template.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcore/int-template.rs b/src/libcore/int-template.rs index 5c5cffb2ac1..b712c68888b 100644 --- a/src/libcore/int-template.rs +++ b/src/libcore/int-template.rs @@ -241,6 +241,7 @@ fn test_times() { #[test] #[should_fail] +#[ignore(cfg(windows))] fn test_times_negative() { for (-10).times { log(error, "nope!"); } }