1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

msvcr120/tests: Check ___lc_locale_name_func with neutral Chinese locales.

This commit is contained in:
Victor Chiletto 2023-06-07 17:46:59 -03:00 committed by Alexandre Julliard
parent fbbe8e26be
commit 969e3626bb

View file

@ -596,6 +596,14 @@ static void test____lc_locale_name_func(void)
}
}
p_setlocale(LC_ALL, "zh-Hans");
lc_names = p____lc_locale_name_func();
todo_wine ok(!lstrcmpW(lc_names[1], L"zh-Hans"), "lc_names[1] expected zh-Hans got %s\n", wine_dbgstr_w(lc_names[1]));
p_setlocale(LC_ALL, "zh-Hant");
lc_names = p____lc_locale_name_func();
todo_wine ok(!lstrcmpW(lc_names[1], L"zh-Hant"), "lc_names[1] expected zh-Hant got %s\n", wine_dbgstr_w(lc_names[1]));
p_setlocale(LC_ALL, "C");
lc_names = p____lc_locale_name_func();
ok(!lc_names[1], "___lc_locale_name_func()[1] = %s\n", wine_dbgstr_w(lc_names[1]));