Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: third_party/icu/source/test/intltest/numfmtst.cpp

Issue 6520018: Get ICU 4.6 to be compiled without RTTI.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: do not include typeinfo at all Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /******************************************************************** 1 /********************************************************************
2 * COPYRIGHT: 2 * COPYRIGHT:
3 * Copyright (c) 1997-2010, International Business Machines Corporation and 3 * Copyright (c) 1997-2010, International Business Machines Corporation and
4 * others. All Rights Reserved. 4 * others. All Rights Reserved.
5 ********************************************************************/ 5 ********************************************************************/
6 /* Modification History: 6 /* Modification History:
7 * Date Name Description 7 * Date Name Description
8 * 07/15/99 helena Ported to HPUX 10/11 CC. 8 * 07/15/99 helena Ported to HPUX 10/11 CC.
9 */ 9 */
10 10
(...skipping 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 UnicodeString a, b; 1442 UnicodeString a, b;
1443 nf->format(1.0, a); 1443 nf->format(1.0, a);
1444 nf->format(1.125, b); 1444 nf->format(1.125, b);
1445 errln((UnicodeString)"FAIL: " + locs[i].getName() + 1445 errln((UnicodeString)"FAIL: " + locs[i].getName() +
1446 " min fraction digits != max fraction digits; " 1446 " min fraction digits != max fraction digits; "
1447 "x 1.0 => " + escape(a) + 1447 "x 1.0 => " + escape(a) +
1448 "; x 1.125 => " + escape(b)); 1448 "; x 1.125 => " + escape(b));
1449 } 1449 }
1450 1450
1451 // Make sure EURO currency formats have exactly 2 fraction digits 1451 // Make sure EURO currency formats have exactly 2 fraction digits
1452 DecimalFormat* df = dynamic_cast<DecimalFormat*>(nf); 1452 DecimalFormat* df = CR_DYNAMIC_CAST<DecimalFormat*>(nf);
1453 if (df != NULL) { 1453 if (df != NULL) {
1454 if (u_strcmp(EUR, df->getCurrency()) == 0) { 1454 if (u_strcmp(EUR, df->getCurrency()) == 0) {
1455 if (min != 2 || max != 2) { 1455 if (min != 2 || max != 2) {
1456 UnicodeString a; 1456 UnicodeString a;
1457 nf->format(1.0, a); 1457 nf->format(1.0, a);
1458 errln((UnicodeString)"FAIL: " + locs[i].getName() + 1458 errln((UnicodeString)"FAIL: " + locs[i].getName() +
1459 " is a EURO format but it does not have 2 fraction digits; " 1459 " is a EURO format but it does not have 2 fraction digits; "
1460 "x 1.0 => " + 1460 "x 1.0 => " +
1461 escape(a)); 1461 escape(a));
1462 } 1462 }
(...skipping 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
2858 const CurrencyAmount* curramt = NULL; 2858 const CurrencyAmount* curramt = NULL;
2859 for (uint32_t i = 0; i < sizeof(formats)/sizeof(formats[0]); ++i) { 2859 for (uint32_t i = 0; i < sizeof(formats)/sizeof(formats[0]); ++i) {
2860 UnicodeString stringToBeParsed = ctou(formats[i]); 2860 UnicodeString stringToBeParsed = ctou(formats[i]);
2861 logln(UnicodeString("stringToBeParsed: ") + stringToBeParsed); 2861 logln(UnicodeString("stringToBeParsed: ") + stringToBeParsed);
2862 Formattable result; 2862 Formattable result;
2863 UErrorCode status = U_ZERO_ERROR; 2863 UErrorCode status = U_ZERO_ERROR;
2864 curFmt->parseObject(stringToBeParsed, result, status); 2864 curFmt->parseObject(stringToBeParsed, result, status);
2865 if (U_FAILURE(status)) { 2865 if (U_FAILURE(status)) {
2866 errln("FAIL: measure format parsing: '%s' ec: %s", formats[i], u_error Name(status)); 2866 errln("FAIL: measure format parsing: '%s' ec: %s", formats[i], u_error Name(status));
2867 } else if (result.getType() != Formattable::kObject || 2867 } else if (result.getType() != Formattable::kObject ||
2868 (curramt = dynamic_cast<const CurrencyAmount*>(result.getObject())) == NULL || 2868 (curramt = CR_DYNAMIC_CAST<const CurrencyAmount*>(result.getObject() )) == NULL ||
2869 curramt->getNumber().getDouble() != 1234.56 || 2869 curramt->getNumber().getDouble() != 1234.56 ||
2870 UnicodeString(curramt->getISOCurrency()).compare(ISO_CURRENCY_USD) 2870 UnicodeString(curramt->getISOCurrency()).compare(ISO_CURRENCY_USD)
2871 ) { 2871 ) {
2872 errln("FAIL: getCurrencyFormat of default locale (en_US) failed roun dtripping the number "); 2872 errln("FAIL: getCurrencyFormat of default locale (en_US) failed roun dtripping the number ");
2873 if (curramt->getNumber().getDouble() != 1234.56) { 2873 if (curramt->getNumber().getDouble() != 1234.56) {
2874 errln((UnicodeString)"wong number, expect: 1234.56" + ", got: " + curramt->getNumber().getDouble()); 2874 errln((UnicodeString)"wong number, expect: 1234.56" + ", got: " + curramt->getNumber().getDouble());
2875 } 2875 }
2876 if (curramt->getISOCurrency() != ISO_CURRENCY_USD) { 2876 if (curramt->getISOCurrency() != ISO_CURRENCY_USD) {
2877 errln((UnicodeString)"wong currency, expect: USD" + ", got: " + curramt->getISOCurrency()); 2877 errln((UnicodeString)"wong currency, expect: USD" + ", got: " + curramt->getISOCurrency());
2878 } 2878 }
(...skipping 3338 matching lines...) Expand 10 before | Expand all | Expand 10 after
6217 result.getDouble() != (double)123 && 6217 result.getDouble() != (double)123 &&
6218 parsePos.getIndex() != 3 6218 parsePos.getIndex() != 3
6219 ) 6219 )
6220 { 6220 {
6221 errln("ERROR: parse failed - expected 123.0, 3 - returned %d, %i", 6221 errln("ERROR: parse failed - expected 123.0, 3 - returned %d, %i",
6222 result.getDouble(), parsePos.getIndex()); 6222 result.getDouble(), parsePos.getIndex());
6223 } 6223 }
6224 } 6224 }
6225 6225
6226 #endif /* #if !UCONFIG_NO_FORMATTING */ 6226 #endif /* #if !UCONFIG_NO_FORMATTING */
OLDNEW
« no previous file with comments | « third_party/icu/source/test/intltest/nmfmtrt.cpp ('k') | third_party/icu/source/test/intltest/numrgts.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698