Skip to content

Commit 31a6eae

Browse files
committed
core: Ignore int-template::test_parse_buf on windows
1 parent ce20ed7 commit 31a6eae

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
@@ -117,7 +117,9 @@ fn test_from_str() {
117117
assert from_str("x") == none;
118118
}
119119

120+
// FIXME: Has alignment issues on windows
120121
#[test]
122+
#[ignore(cfg(target_os = "win32"))]
121123
fn test_parse_buf() {
122124
import str::bytes;
123125
assert parse_buf(bytes("123"), 10u) == some(123 as T);

0 commit comments

Comments
 (0)