core: Ignore int-template::test_parse_buf on windows

This commit is contained in:
Brian Anderson 2012-05-16 14:33:42 -07:00
parent ce20ed77b2
commit 31a6eae4fc

View file

@ -117,7 +117,9 @@ fn test_from_str() {
assert from_str("x") == none;
}
// FIXME: Has alignment issues on windows
#[test]
#[ignore(cfg(target_os = "win32"))]
fn test_parse_buf() {
import str::bytes;
assert parse_buf(bytes("123"), 10u) == some(123 as T);