Skip to content

Commit ab4cc71

Browse files
committed
---
yaml --- r: 6083 b: refs/heads/master c: eb8995e h: refs/heads/master i: 6081: 9e3611e 6079: c9ad0e2 v: v3
1 parent 8f85b3a commit ab4cc71

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 76077a9fb7f67a8af1b2eb16c2814ca703ad6c97
2+
refs/heads/master: eb8995e2fa865ceed420f415433c84a164a8740a

trunk/src/test/stdtest/char.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ fn test_to_digit() {
2929

3030
#[test]
3131
#[should_fail]
32+
#[ignore(cfg(target_os = "win32"))]
3233
fn test_to_digit_fail_1() {
3334
char::to_digit(' ');
3435
}
3536

3637
#[test]
3738
#[should_fail]
39+
#[ignore(cfg(target_os = "win32"))]
3840
fn test_to_digit_fail_2() {
3941
char::to_digit('$');
4042
}

trunk/src/test/stdtest/int.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ fn test_from_str() {
2121

2222
#[test]
2323
#[should_fail]
24+
#[ignore(cfg(target_os = "win32"))]
2425
fn test_from_str_fail_1() {
2526
int::from_str(" ");
2627
}
2728

2829
#[test]
2930
#[should_fail]
31+
#[ignore(cfg(target_os = "win32"))]
3032
fn test_from_str_fail_2() {
3133
int::from_str("x");
3234
}
@@ -54,12 +56,14 @@ fn test_parse_buf() {
5456

5557
#[test]
5658
#[should_fail]
59+
#[ignore(cfg(target_os = "win32"))]
5760
fn test_parse_buf_fail_1() {
5861
int::parse_buf(bytes("Z"), 35u);
5962
}
6063

6164
#[test]
6265
#[should_fail]
66+
#[ignore(cfg(target_os = "win32"))]
6367
fn test_parse_buf_fail_2() {
6468
int::parse_buf(bytes("-9"), 2u);
6569
}

trunk/src/test/stdtest/uint.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ fn test_from_str() {
1616

1717
#[test]
1818
#[should_fail]
19+
#[ignore(cfg(target_os = "win32"))]
1920
fn test_from_str_fail_1() {
2021
uint::from_str(" ");
2122
}
2223

2324
#[test]
2425
#[should_fail]
26+
#[ignore(cfg(target_os = "win32"))]
2527
fn test_from_str_fail_2() {
2628
uint::from_str("x");
2729
}
@@ -38,12 +40,14 @@ fn test_parse_buf() {
3840

3941
#[test]
4042
#[should_fail]
43+
#[ignore(cfg(target_os = "win32"))]
4144
fn test_parse_buf_fail_1() {
4245
uint::parse_buf(bytes("Z"), 10u);
4346
}
4447

4548
#[test]
4649
#[should_fail]
50+
#[ignore(cfg(target_os = "win32"))]
4751
fn test_parse_buf_fail_2() {
4852
uint::parse_buf(bytes("_"), 2u);
4953
}

0 commit comments

Comments
 (0)