From 7c53c2bb16209e2d71f735a05f8871bd56e66b36 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 16 May 2012 16:17:28 -0700 Subject: [PATCH] core: Ignore more tests on more platforms --- src/libcore/int-template.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libcore/int-template.rs b/src/libcore/int-template.rs index e67425a8920..ac1cc3bbf8b 100644 --- a/src/libcore/int-template.rs +++ b/src/libcore/int-template.rs @@ -97,9 +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 +// FIXME: Has alignment issues on windows and 32-bit linux #[test] -#[ignore(cfg(target_os = "win32"))] +#[ignore] fn test_from_str() { assert from_str("0") == some(0 as T); assert from_str("3") == some(3 as T); @@ -117,9 +117,9 @@ fn test_from_str() { assert from_str("x") == none; } -// FIXME: Has alignment issues on windows +// FIXME: Has alignment issues on windows and 32-bit linux #[test] -#[ignore(cfg(target_os = "win32"))] +#[ignore] fn test_parse_buf() { import str::bytes; assert parse_buf(bytes("123"), 10u) == some(123 as T);