From 08bbf4b019de4305f010abb8c10c0aafa786fe7c Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 22 Apr 2013 19:25:25 -0700 Subject: [PATCH] core: ignore test from_str_ignore_underscores. Broken on i686. #6018 --- src/libcore/num/strconv.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcore/num/strconv.rs b/src/libcore/num/strconv.rs index 4a45a1d97023e..8d050e65c9812 100644 --- a/src/libcore/num/strconv.rs +++ b/src/libcore/num/strconv.rs @@ -655,6 +655,7 @@ mod test { use option::*; #[test] + #[ignore(reason = "fails in x86")] fn from_str_ignore_underscores() { let s : Option = from_str_common("__1__", 2, false, false, false, ExpNone, false, true);