Skip to content

Commit ce20ed7

Browse files
committed
core: Ignore int-template::test_from_str on windows
Alignment problems
1 parent 69eca26 commit ce20ed7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libcore/int-template.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +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
100101
#[test]
102+
#[ignore(cfg(target_os = "win32"))]
101103
fn test_from_str() {
102104
assert from_str("0") == some(0 as T);
103105
assert from_str("3") == some(3 as T);

0 commit comments

Comments
 (0)