]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/cintltst/calltest.c
ICU-6.2.4.tar.gz
[apple/icu.git] / icuSources / test / cintltst / calltest.c
index 9a3f441a0c78a6b2dc753a4245a30a496c9e1835..5c05489cb7a0208d2db06df9d1c3c83645f36e3d 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 1996-2001, International Business Machines Corporation and
+ * Copyright (c) 1996-2004, 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);
@@ -33,10 +32,14 @@ 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 addAllTests(TestNode** root)
 {
-    addSetup(root);  /* Leave this test first! */
     addUDataTest(root);
     addPUtilTest(root);
     addUTF16Test(root);
@@ -61,5 +64,14 @@ void addAllTests(TestNode** root)
 #endif
     addUSetTest(root);
     addTestDeprecatedAPI(root);
+#if !UCONFIG_NO_IDNA
+    addUStringPrepTest(root);
+    addIDNATest(root);
+#endif
+    addHeapMutexTest(root);
+    addUTraceTest(root);
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS
+    addURegexTest(root);
+#endif
 }