mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
Disable a test that's failing on 32-bit due to imprecise literal handling
7655b3c0c6
(re-)introduced the problem
This commit is contained in:
parent
817c9f2a54
commit
30d923d14b
@ -41,7 +41,8 @@ fn part1() {
|
||||
test(#fmt["%f", 5.82], "5.82");
|
||||
// 32-bit limits
|
||||
|
||||
test(#fmt["%i", -2147483648], "-2147483648");
|
||||
// FIXME Disabled until issue 1252 is resolved.
|
||||
// test(#fmt["%i", -2147483648], "-2147483648");
|
||||
test(#fmt["%i", 2147483647], "2147483647");
|
||||
test(#fmt["%u", 4294967295u], "4294967295");
|
||||
test(#fmt["%x", 0xffffffff_u], "ffffffff");
|
||||
|
Loading…
Reference in New Issue
Block a user