core: Ignore a should_fail test on win32

This commit is contained in:
Brian Anderson 2012-05-21 18:19:19 -07:00
parent c8c6f8e23b
commit 1678b6f01f

View File

@ -284,6 +284,7 @@ mod tests {
#[test]
#[should_fail]
#[ignore(cfg(target_os = "win3"))]
fn gen_int_from_fail() {
rand::rng().gen_int_from(5, -2);
}