mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-10273 Investigate Sparc test failure.
X-SVN-Rev: 34286
This commit is contained in:
parent
bbc0a17a8e
commit
5b0592af79
1 changed files with 4 additions and 1 deletions
|
@ -783,7 +783,10 @@ void IntlTestDecimalFormatAPI::TestFixedDecimal() {
|
|||
ASSERT_EQUAL(0, fd.decimalDigitsWithoutTrailingZeros);
|
||||
// note: going through DigitList path to FixedDecimal, which is trimming
|
||||
// int64_t fields to 18 digits. See ticket Ticket #10374
|
||||
ASSERT_EQUAL(223372036854775807LL, fd.intValue);
|
||||
// ASSERT_EQUAL(223372036854775807LL, fd.intValue);
|
||||
if (!(fd.intValue == 223372036854775807LL || fd.intValue == 9223372036854775807LL)) {
|
||||
errln("File %s, Line %d, fd.intValue = %lld", __FILE__, __LINE__, fd.intValue);
|
||||
}
|
||||
ASSERT_EQUAL(TRUE, fd.hasIntegerValue);
|
||||
ASSERT_EQUAL(FALSE, fd.isNegative);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue