ICU-10273 Investigate Sparc test failure.

X-SVN-Rev: 34286
This commit is contained in:
Andy Heninger 2013-09-12 17:16:52 +00:00
parent bbc0a17a8e
commit 5b0592af79

View file

@ -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);