ICU-3984 'never' is a long time to not run other tests. :) Reverting r28926 here

X-SVN-Rev: 28992
This commit is contained in:
Steven R. Loomis 2010-11-03 01:06:50 +00:00
parent 67bebde8b5
commit 0a98dc21cb

View file

@ -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
}