mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 04:29:31 +00:00
ICU-142 Removed tests for changed ISO language codes,
"he", "yi" and "id". X-SVN-Rev: 469
This commit is contained in:
parent
9bd95aeb63
commit
99d913e731
2 changed files with 11 additions and 46 deletions
|
@ -101,18 +101,17 @@ void LocaleTest::runIndexedTest( int32_t index, bool_t exec, char* &name, char*
|
|||
CASE(10, TestBug4135316)
|
||||
CASE(11, TestSimpleDisplayNames)
|
||||
CASE(12, TestUninstalledISO3Names)
|
||||
CASE(13, TestChangedISO639Codes)
|
||||
CASE(14, TestAtypicalLocales)
|
||||
CASE(15, TestThaiCurrencyFormat)
|
||||
CASE(16, TestEuroSupport)
|
||||
CASE(17, TestToString)
|
||||
CASE(18, Test4139940)
|
||||
CASE(19, Test4143951)
|
||||
CASE(20, Test4147315)
|
||||
CASE(21, Test4147317)
|
||||
CASE(22, Test4147552)
|
||||
CASE(23, TestVariantParsing)
|
||||
CASE(24, Test4105828)
|
||||
CASE(13, TestAtypicalLocales)
|
||||
CASE(14, TestThaiCurrencyFormat)
|
||||
CASE(15, TestEuroSupport)
|
||||
CASE(16, TestToString)
|
||||
CASE(17, Test4139940)
|
||||
CASE(18, Test4143951)
|
||||
CASE(19, Test4147315)
|
||||
CASE(20, Test4147317)
|
||||
CASE(21, Test4147552)
|
||||
CASE(22, TestVariantParsing)
|
||||
CASE(23, Test4105828)
|
||||
|
||||
default: name = ""; break; //needed to end loop
|
||||
}
|
||||
|
@ -911,39 +910,6 @@ LocaleTest::TestUninstalledISO3Names()
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @bug 4052404
|
||||
*/
|
||||
void
|
||||
LocaleTest::TestChangedISO639Codes()
|
||||
{
|
||||
Locale hebrewOld("iw", "IL", "");
|
||||
Locale hebrewNew("he", "IL", "");
|
||||
Locale yiddishOld("ji", "IL", "");
|
||||
Locale yiddishNew("yi", "IL", "");
|
||||
Locale indonesianOld("in", "", "");
|
||||
Locale indonesianNew("id", "", "");
|
||||
|
||||
UnicodeString temp;
|
||||
|
||||
if (hebrewNew.getLanguage(temp) != "iw")
|
||||
errln("Got back wrong language code for Hebrew: expected \"iw\", got \"" +
|
||||
hebrewNew.getLanguage(temp) + "\"");
|
||||
if (yiddishNew.getLanguage(temp) != "ji")
|
||||
errln("Got back wrong language code for Yiddish: expected \"ji\", got \"" +
|
||||
yiddishNew.getLanguage(temp) + "\"");
|
||||
if (indonesianNew.getLanguage(temp) != "in")
|
||||
errln("Got back wrong language code for Indonesian: expected \"in\", got \"" +
|
||||
indonesianNew.getLanguage(temp) + "\"");
|
||||
|
||||
if (hebrewOld != hebrewNew)
|
||||
errln("Old and new Hebrew locales don't compare equal.");
|
||||
if (yiddishOld != yiddishNew)
|
||||
errln("Old and new Yiddish locales don't compare equal.");
|
||||
if (indonesianOld != indonesianNew)
|
||||
errln("Old and new Indonesian locales don't compare equal.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @bug 4092475
|
||||
* I could not reproduce this bug. I'm pretty convinced it was fixed with the
|
||||
|
|
|
@ -59,7 +59,6 @@ public:
|
|||
void TestBug4135316(void);
|
||||
void TestSimpleDisplayNames(void);
|
||||
void TestUninstalledISO3Names(void);
|
||||
void TestChangedISO639Codes(void);
|
||||
void TestAtypicalLocales(void);
|
||||
void TestNullDefault(void);
|
||||
void TestThaiCurrencyFormat(void);
|
||||
|
|
Loading…
Add table
Reference in a new issue