diff --git a/icu4c/source/test/cintltst/calltest.c b/icu4c/source/test/cintltst/calltest.c index 8ca1c3fc032..120fecfc7b2 100644 --- a/icu4c/source/test/cintltst/calltest.c +++ b/icu4c/source/test/cintltst/calltest.c @@ -16,9 +16,6 @@ #include "cintltst.h" -#define NEVER false - - void addUtility(TestNode** root); void addBreakIter(TestNode** root); void addStandardNamesTest(TestNode **root); @@ -45,7 +42,6 @@ void addUSpoofTest(TestNode** root); void addAllTests(TestNode** root) { -#if NEVER addCnvSelTest(root); addUDataTest(root); addHeapMutexTest(root); @@ -73,11 +69,9 @@ void addAllTests(TestNode** root) #if !UCONFIG_NO_FORMATTING addFormatTest(root); #endif -#endif #if !UCONFIG_NO_COLLATION addCollTest(root); #endif -#if NEVER #if !UCONFIG_NO_TRANSLITERATION addUTransTest(root); #endif @@ -85,6 +79,5 @@ void addAllTests(TestNode** root) addUSpoofTest(root); #endif addPUtilTest(root); -#endif }