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:
Fredrik Roubert 2024-03-21 00:47:08 +01:00 committed by Markus Scherer
parent e246d3b712
commit 028fa70c29

View file

@ -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)];