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

Side by Side Diff: third_party/icu/source/test/intltest/uobjtest.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 * Copyright (C) 2010 , Yahoo! Inc. 5 * Copyright (C) 2010 , Yahoo! Inc.
6 ********************************************************************/ 6 ********************************************************************/
7 7
8 #include <stdio.h> 8 #include <stdio.h>
9 #include <string.h> 9 #include <string.h>
10 #include <typeinfo> // for 'typeid' to work
11 10
12 #include "uobjtest.h" 11 #include "uobjtest.h"
13 #include "cmemory.h" // UAlignedMemory 12 #include "cmemory.h" // UAlignedMemory
14 13
15 /** 14 /**
16 * Test for UObject, currently only the classID. 15 * Test for UObject, currently only the classID.
17 * 16 *
18 * Usage 17 * Usage
19 * TESTCLASSID_NONE_DEFAULT(Foo) 18 * TESTCLASSID_NONE_DEFAULT(Foo)
20 * -- Foo is expected to not support "poor man's RTTI". 19 * -- Foo is expected to not support "poor man's RTTI".
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 #endif 560 #endif
562 } 561 }
563 562
564 void UObjectTest::TestCompilerRTTI() { 563 void UObjectTest::TestCompilerRTTI() {
565 UErrorCode errorCode = U_ZERO_ERROR; 564 UErrorCode errorCode = U_ZERO_ERROR;
566 NumberFormat *nf = NumberFormat::createInstance("de", errorCode); 565 NumberFormat *nf = NumberFormat::createInstance("de", errorCode);
567 if (U_FAILURE(errorCode)) { 566 if (U_FAILURE(errorCode)) {
568 dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(er rorCode)); 567 dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(er rorCode));
569 return; 568 return;
570 } 569 }
571 if (dynamic_cast<DecimalFormat *>(nf) == NULL || dynamic_cast<ChoiceFormat * >(nf) != NULL) { 570 if (CR_DYNAMIC_CAST<DecimalFormat *>(nf) == NULL || CR_DYNAMIC_CAST<ChoiceFo rmat *>(nf) != NULL) {
572 errln("dynamic_cast<>(NumberFormat) failed"); 571 errln("CR_DYNAMIC_CAST<>(NumberFormat) failed");
573 } 572 }
574 UnicodeSet emptySet; 573 UnicodeSet emptySet;
575 if (&typeid(*nf) == NULL || typeid(*nf) == typeid(UObject) || typeid(*nf) == typeid(Format) || 574 if (&CR_TYPEID(*nf) == NULL || CR_TYPEID(*nf) == CR_TYPEID(UObject) || CR_TY PEID(*nf) == CR_TYPEID(Format) ||
576 typeid(*nf) != typeid(DecimalFormat) || typeid(*nf) == typeid(ChoiceForm at) || 575 CR_TYPEID(*nf) != CR_TYPEID(DecimalFormat) || CR_TYPEID(*nf) == CR_TYPEI D(ChoiceFormat) ||
577 typeid(*nf) == typeid(emptySet) 576 CR_TYPEID(*nf) == CR_TYPEID(emptySet)
578 ) { 577 ) {
579 errln("typeid(NumberFormat) failed"); 578 errln("CR_TYPEID(NumberFormat) failed");
580 } 579 }
581 delete nf; 580 delete nf;
582 } 581 }
583 582
584 /* --------------- */ 583 /* --------------- */
585 584
586 void UObjectTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /* par */ ) 585 void UObjectTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /* par */ )
587 { 586 {
588 switch (index) { 587 switch (index) {
589 588
590 TESTCASE(0, testIDs); 589 TESTCASE(0, testIDs);
591 TESTCASE(1, testUMemory); 590 TESTCASE(1, testUMemory);
592 TESTCASE(2, TestMFCCompatibility); 591 TESTCASE(2, TestMFCCompatibility);
593 TESTCASE(3, TestCompilerRTTI); 592 TESTCASE(3, TestCompilerRTTI);
594 593
595 default: name = ""; break; //needed to end loop 594 default: name = ""; break; //needed to end loop
596 } 595 }
597 } 596 }
OLDNEW
« no previous file with comments | « third_party/icu/source/test/intltest/tztest.cpp ('k') | third_party/icu/source/tools/toolutil/xmlparser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698