diff options
Diffstat (limited to 'src/test/stdtest/uint.rs')
| -rw-r--r-- | src/test/stdtest/uint.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/stdtest/uint.rs b/src/test/stdtest/uint.rs index 6a2b5bdbd3a..0ba2ac39c1d 100644 --- a/src/test/stdtest/uint.rs +++ b/src/test/stdtest/uint.rs @@ -16,12 +16,14 @@ fn test_from_str() { #[test] #[should_fail] +#[ignore(cfg(target_os = "win32"))] fn test_from_str_fail_1() { uint::from_str(" "); } #[test] #[should_fail] +#[ignore(cfg(target_os = "win32"))] fn test_from_str_fail_2() { uint::from_str("x"); } @@ -38,12 +40,14 @@ fn test_parse_buf() { #[test] #[should_fail] +#[ignore(cfg(target_os = "win32"))] fn test_parse_buf_fail_1() { uint::parse_buf(bytes("Z"), 10u); } #[test] #[should_fail] +#[ignore(cfg(target_os = "win32"))] fn test_parse_buf_fail_2() { uint::parse_buf(bytes("_"), 2u); } |
