about summary refs log tree commit diff
path: root/src/test/stdtest/int.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/stdtest/int.rs')
-rw-r--r--src/test/stdtest/int.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/stdtest/int.rs b/src/test/stdtest/int.rs
index 28b9b94c2ff..9136289e936 100644
--- a/src/test/stdtest/int.rs
+++ b/src/test/stdtest/int.rs
@@ -21,12 +21,14 @@ fn test_from_str() {
 
 #[test]
 #[should_fail]
+#[ignore(cfg(target_os = "win32"))]
 fn test_from_str_fail_1() {
     int::from_str(" ");
 }
 
 #[test]
 #[should_fail]
+#[ignore(cfg(target_os = "win32"))]
 fn test_from_str_fail_2() {
     int::from_str("x");
 }
@@ -54,12 +56,14 @@ fn test_parse_buf() {
 
 #[test]
 #[should_fail]
+#[ignore(cfg(target_os = "win32"))]
 fn test_parse_buf_fail_1() {
     int::parse_buf(bytes("Z"), 35u);
 }
 
 #[test]
 #[should_fail]
+#[ignore(cfg(target_os = "win32"))]
 fn test_parse_buf_fail_2() {
     int::parse_buf(bytes("-9"), 2u);
 }