X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/b75a7d8f3b4adbae880cab104ce2c6a50eee4db2..374ca955a76ecab1204ca8bfa63ff9238d998416:/icuSources/test/cintltst/cutiltst.c diff --git a/icuSources/test/cintltst/cutiltst.c b/icuSources/test/cintltst/cutiltst.c index f0a36aca..c19b23de 100644 --- a/icuSources/test/cintltst/cutiltst.c +++ b/icuSources/test/cintltst/cutiltst.c @@ -1,6 +1,6 @@ /******************************************************************** * COPYRIGHT: - * Copyright (c) 1997-2003, International Business Machines Corporation and + * Copyright (c) 1997-2004, International Business Machines Corporation and * others. All Rights Reserved. ********************************************************************/ /******************************************************************************** @@ -15,30 +15,32 @@ #include "cintltst.h" void addLocaleTest(TestNode**); +void addCLDRTest(TestNode**); void addUnicodeTest(TestNode**); void addUStringTest(TestNode**); void addResourceBundleTest(TestNode**); void addNEWResourceBundleTest(TestNode**); void addHashtableTest(TestNode** root); void addCStringTest(TestNode** root); -void addMemoryStreamTest(TestNode** root); void addTrieTest(TestNode** root); void addEnumerationTest(TestNode** root); void addPosixTest(TestNode** root); +void addSortTest(TestNode** root); void addUtility(TestNode** root); void addUtility(TestNode** root) { + addCStringTest(root); addTrieTest(root); addLocaleTest(root); + addCLDRTest(root); addUnicodeTest(root); addUStringTest(root); addResourceBundleTest(root); addNEWResourceBundleTest(root); addHashtableTest(root); - addCStringTest(root); - addMemoryStreamTest(root); addEnumerationTest(root); addPosixTest(root); + addSortTest(root); }