mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22701 Bugfix: Make test independent of the default locale.
The original intention behind this test case was to use the root locale, but ures_getFunctionalEquivalent() is implemented by calling ures_open() which sets URES_OPEN_LOCALE_DEFAULT_ROOT which will cause the default locale to be loaded before the root locale. To avoid that, pick a locale other than the root locale for the test.
This commit is contained in:
parent
e246d3b712
commit
028fa70c29
1 changed files with 3 additions and 3 deletions
|
@ -2783,7 +2783,7 @@ static void TestGetFunctionalEquivalent(void) {
|
|||
|
||||
static void TestGetFunctionalEquivalentVariantLengthLimit(void) {
|
||||
static const char valid[] =
|
||||
"_"
|
||||
"en_001"
|
||||
"_12345678"
|
||||
"_12345678"
|
||||
"_12345678"
|
||||
|
@ -2806,7 +2806,7 @@ static void TestGetFunctionalEquivalentVariantLengthLimit(void) {
|
|||
"_12345678";
|
||||
|
||||
static const char invalid[] =
|
||||
"_"
|
||||
"en_001"
|
||||
"_12345678"
|
||||
"_12345678"
|
||||
"_12345678"
|
||||
|
@ -2828,7 +2828,7 @@ static void TestGetFunctionalEquivalentVariantLengthLimit(void) {
|
|||
"_12345678"
|
||||
"_12345678X"; // One character too long.
|
||||
|
||||
static const char localeExpected[] = "_@calendar=gregorian";
|
||||
static const char localeExpected[] = "en_001@calendar=gregorian";
|
||||
const int32_t reslenExpected = uprv_strlen(localeExpected);
|
||||
|
||||
char buffer[UPRV_LENGTHOF(invalid)];
|
||||
|
|
Loading…
Add table
Reference in a new issue