Skip to content

Commit 7c53c2b

Browse files
committed
core: Ignore more tests on more platforms
1 parent 31a6eae commit 7c53c2b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libcore/int-template.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ fn to_str(n: T, radix: uint) -> str {
9797
fn str(i: T) -> str { ret to_str(i, 10u); }
9898

9999

100-
// FIXME: Has alignment issues on windows
100+
// FIXME: Has alignment issues on windows and 32-bit linux
101101
#[test]
102-
#[ignore(cfg(target_os = "win32"))]
102+
#[ignore]
103103
fn test_from_str() {
104104
assert from_str("0") == some(0 as T);
105105
assert from_str("3") == some(3 as T);
@@ -117,9 +117,9 @@ fn test_from_str() {
117117
assert from_str("x") == none;
118118
}
119119

120-
// FIXME: Has alignment issues on windows
120+
// FIXME: Has alignment issues on windows and 32-bit linux
121121
#[test]
122-
#[ignore(cfg(target_os = "win32"))]
122+
#[ignore]
123123
fn test_parse_buf() {
124124
import str::bytes;
125125
assert parse_buf(bytes("123"), 10u) == some(123 as T);

0 commit comments

Comments
 (0)