X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/b75a7d8f3b4adbae880cab104ce2c6a50eee4db2..b801cf366c7671a99bdcef84d1e9c0ec64b36723:/icuSources/test/cintltst/calltest.c?ds=sidebyside diff --git a/icuSources/test/cintltst/calltest.c b/icuSources/test/cintltst/calltest.c index 9a3f441a..a2e60c67 100644 --- a/icuSources/test/cintltst/calltest.c +++ b/icuSources/test/cintltst/calltest.c @@ -1,6 +1,6 @@ /******************************************************************** * COPYRIGHT: - * Copyright (c) 1996-2001, International Business Machines Corporation and + * Copyright (c) 1996-2012, International Business Machines Corporation and * others. All Rights Reserved. ********************************************************************/ /******************************************************************************** @@ -16,7 +16,6 @@ #include "cintltst.h" -void addSetup(TestNode** root); void addUtility(TestNode** root); void addBreakIter(TestNode** root); void addStandardNamesTest(TestNode **root); @@ -29,37 +28,61 @@ void addUTF16Test(TestNode** root); void addUTF8Test(TestNode** root); void addUTransTest(TestNode** root); void addPUtilTest(TestNode** root); -void addCompactArrayTest(TestNode** root); -void addTestDeprecatedAPI(TestNode** root); void addUCharTransformTest(TestNode** root); void addUSetTest(TestNode** root); +void addUStringPrepTest(TestNode** root); +void addIDNATest(TestNode** root); +void addHeapMutexTest(TestNode **root); +void addUTraceTest(TestNode** root); +void addURegexTest(TestNode** root); +void addUTextTest(TestNode** root); +void addUCsdetTest(TestNode** root); +void addCnvSelTest(TestNode** root); +void addUSpoofTest(TestNode** root); +#if !UCONFIG_NO_FORMATTING +void addGendInfoForTest(TestNode** root); +#endif void addAllTests(TestNode** root) { - addSetup(root); /* Leave this test first! */ + addCnvSelTest(root); addUDataTest(root); - addPUtilTest(root); + addHeapMutexTest(root); addUTF16Test(root); addUTF8Test(root); addUtility(root); + addUTraceTest(root); + addUTextTest(root); addConvert(root); addUCharTransformTest(root); addStandardNamesTest(root); - addCompactArrayTest(root); -#if !UCONFIG_NO_FORMATTING - addFormatTest(root); + addUCsdetTest(root); + addComplexTest(root); + addUSetTest(root); +#if !UCONFIG_NO_IDNA + addUStringPrepTest(root); + addIDNATest(root); +#endif +#if !UCONFIG_NO_REGULAR_EXPRESSIONS + addURegexTest(root); #endif #if !UCONFIG_NO_BREAK_ITERATION addBreakIter(root); #endif +#if !UCONFIG_NO_FORMATTING + addFormatTest(root); +#endif #if !UCONFIG_NO_COLLATION addCollTest(root); #endif - addComplexTest(root); #if !UCONFIG_NO_TRANSLITERATION addUTransTest(root); #endif - addUSetTest(root); - addTestDeprecatedAPI(root); +#if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION + addUSpoofTest(root); +#endif + addPUtilTest(root); +#if !UCONFIG_NO_FORMATTING + addGendInfoForTest(root); +#endif } -