From 82c2ed3b3a01ab4f896dd3ed53fd2af1a18ad7f5 Mon Sep 17 00:00:00 2001 From: Yoshito Umaoka Date: Fri, 1 May 2009 21:02:02 +0000 Subject: [PATCH] ICU-6896 Reverted the rbnf test case change in the previous change set. Locale 'ga' should be included for parsing test, although ga/spellout was excluded from parse in the library code. X-SVN-Rev: 25973 --- icu4c/source/test/intltest/itrbnf.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/icu4c/source/test/intltest/itrbnf.cpp b/icu4c/source/test/intltest/itrbnf.cpp index 457b596939..4b5f85f2f9 100644 --- a/icu4c/source/test/intltest/itrbnf.cpp +++ b/icu4c/source/test/intltest/itrbnf.cpp @@ -1798,7 +1798,6 @@ IntlTestRBNF::TestAllLocales() // RBNF parse is extremely slow when lenient option is enabled. // For non-exhaustive mode, we only test a few locales. - const char* noParseLocales[] = {"ga", NULL}; const char* parseLocales[] = {"en_US", "nl_NL", "be", NULL}; @@ -1807,12 +1806,6 @@ IntlTestRBNF::TestAllLocales() for (int i = 0; i < count; ++i) { const Locale* loc = &locales[i]; UBool testParse = TRUE; - for (int j = 0; noParseLocales[j] != NULL; j++) { - if (strcmp(loc->getLanguage(), noParseLocales[j]) == 0) { - testParse = FALSE; - break; - } - } if (quick) { testParse = FALSE; for (int k = 0; parseLocales[k] != NULL; k++) {