From 5b0592af79c7601d08cafcbbc7b71077faeb7e4f Mon Sep 17 00:00:00 2001 From: Andy Heninger Date: Thu, 12 Sep 2013 17:16:52 +0000 Subject: [PATCH] ICU-10273 Investigate Sparc test failure. X-SVN-Rev: 34286 --- icu4c/source/test/intltest/dcfmapts.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); -- 2.40.0