From ce20ed77b2345f7df472ae14abddf9ffba52b20a Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 16 May 2012 14:12:19 -0700 Subject: [PATCH] core: Ignore int-template::test_from_str on windows Alignment problems --- src/libcore/int-template.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libcore/int-template.rs b/src/libcore/int-template.rs index e1ec3e9683b2..d2793b4c54d4 100644 --- a/src/libcore/int-template.rs +++ b/src/libcore/int-template.rs @@ -97,7 +97,9 @@ fn to_str(n: T, radix: uint) -> str { fn str(i: T) -> str { ret to_str(i, 10u); } +// FIXME: Has alignment issues on windows #[test] +#[ignore(cfg(target_os = "win32"))] fn test_from_str() { assert from_str("0") == some(0 as T); assert from_str("3") == some(3 as T);