Commit 969e3626 authored by Victor Chiletto's avatar Victor Chiletto Committed by Alexandre Julliard

msvcr120/tests: Check ___lc_locale_name_func with neutral Chinese locales.

parent fbbe8e26
......@@ -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]));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment