From: Andy Heninger Date: Thu, 12 Sep 2013 17:16:52 +0000 (+0000) Subject: ICU-10273 Investigate Sparc test failure. X-Git-Tag: milestone-59-0-1~2555 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b0592af79c7601d08cafcbbc7b71077faeb7e4f;p=icu ICU-10273 Investigate Sparc test failure. X-SVN-Rev: 34286 --- diff --git a/icu4c/source/test/intltest/dcfmapts.cpp b/icu4c/source/test/intltest/dcfmapts.cpp index bdfce6b0575..d0b803e2b2b 100644 --- a/icu4c/source/test/intltest/dcfmapts.cpp +++ b/icu4c/source/test/intltest/dcfmapts.cpp @@ -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);