ICU-511.25.tar.gz
[apple/icu.git] / icuSources / test / cintltst / calltest.c
index 8e5f192dbe115973c9703b9026dc715fde38f1ee..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.
  ********************************************************************/
 /********************************************************************************
@@ -37,13 +37,17 @@ 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);
     addHeapMutexTest(root);
-    addPUtilTest(root);
     addUTF16Test(root);
     addUTF8Test(root);
     addUtility(root);
@@ -74,5 +78,11 @@ void addAllTests(TestNode** root)
 #if !UCONFIG_NO_TRANSLITERATION
     addUTransTest(root);
 #endif
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION
+    addUSpoofTest(root);
+#endif
+    addPUtilTest(root);
+#if !UCONFIG_NO_FORMATTING
+    addGendInfoForTest(root);
+#endif
 }
-