Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3450)

Unified Diff: icu46/source/test/cintltst/calltest.c

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « icu46/source/test/cintltst/calldata.h ('k') | icu46/source/test/cintltst/capitst.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: icu46/source/test/cintltst/calltest.c
===================================================================
--- icu46/source/test/cintltst/calltest.c (revision 0)
+++ icu46/source/test/cintltst/calltest.c (revision 0)
@@ -0,0 +1,83 @@
+/********************************************************************
+ * COPYRIGHT:
+ * Copyright (c) 1996-2010, International Business Machines Corporation and
+ * others. All Rights Reserved.
+ ********************************************************************/
+/********************************************************************************
+*
+* File CALLTEST.C
+*
+* Modification History:
+* Creation: Madhu Katragadda
+*********************************************************************************
+*/
+/* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */
+
+
+#include "cintltst.h"
+
+void addUtility(TestNode** root);
+void addBreakIter(TestNode** root);
+void addStandardNamesTest(TestNode **root);
+void addFormatTest(TestNode** root);
+void addConvert(TestNode** root);
+void addCollTest(TestNode** root);
+void addComplexTest(TestNode** root);
+void addUDataTest(TestNode** root);
+void addUTF16Test(TestNode** root);
+void addUTF8Test(TestNode** root);
+void addUTransTest(TestNode** root);
+void addPUtilTest(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);
+
+void addAllTests(TestNode** root)
+{
+ addCnvSelTest(root);
+ addUDataTest(root);
+ addHeapMutexTest(root);
+ addUTF16Test(root);
+ addUTF8Test(root);
+ addUtility(root);
+ addUTraceTest(root);
+ addUTextTest(root);
+ addConvert(root);
+ addUCharTransformTest(root);
+ addStandardNamesTest(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
+#if !UCONFIG_NO_TRANSLITERATION
+ addUTransTest(root);
+#endif
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION
+ addUSpoofTest(root);
+#endif
+ addPUtilTest(root);
+}
+
Property changes on: icu46/source/test/cintltst/calltest.c
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « icu46/source/test/cintltst/calldata.h ('k') | icu46/source/test/cintltst/capitst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698