Ignore a should_fail test on windows

This commit is contained in:
Brian Anderson 2012-07-05 23:26:41 -07:00
parent 9b2d988df0
commit 1eae49748d

View file

@ -241,6 +241,7 @@ fn test_times() {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_times_negative() {
for (-10).times { log(error, "nope!"); }
}