]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/cintltst/calltest.c
ICU-551.51.4.tar.gz
[apple/icu.git] / icuSources / test / cintltst / calltest.c
index b9dc71875af263243070cf54b737fe30de9f17b0..a2e60c67a7cbd76d54eab2d2c4e272d3f54e0a9c 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 1996-2006, International Business Machines Corporation and
+ * Copyright (c) 1996-2012, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 /********************************************************************************
@@ -28,7 +28,6 @@ void addUTF16Test(TestNode** root);
 void addUTF8Test(TestNode** root);
 void addUTransTest(TestNode** root);
 void addPUtilTest(TestNode** root);
-void addTestDeprecatedAPI(TestNode** root);
 void addUCharTransformTest(TestNode** root);
 void addUSetTest(TestNode** root);
 void addUStringPrepTest(TestNode** root);
@@ -38,43 +37,52 @@ 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)
 {
+    addCnvSelTest(root);
     addUDataTest(root);
-    addPUtilTest(root);
+    addHeapMutexTest(root);
     addUTF16Test(root);
     addUTF8Test(root);
     addUtility(root);
+    addUTraceTest(root);
+    addUTextTest(root);
     addConvert(root);
     addUCharTransformTest(root);
     addStandardNamesTest(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_IDNA
-    addUStringPrepTest(root);
-    addIDNATest(root);
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION
+    addUSpoofTest(root);
 #endif
-    addHeapMutexTest(root);
-    addUTraceTest(root);
-#if !UCONFIG_NO_REGULAR_EXPRESSIONS
-    addURegexTest(root);
+    addPUtilTest(root);
+#if !UCONFIG_NO_FORMATTING
+    addGendInfoForTest(root);
 #endif
-    addUTextTest(root);
-    addUCsdetTest(root);
 }
-