Commit c57a5314 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

gdi32/tests: Add locale-dependent face matching test.

parent 5a0c9270
......@@ -7269,12 +7269,21 @@ static void test_lang_names(void)
/* either because it's the primary language, or because it's a secondary */
ok( efnd.total == min( 2, i + 1 ), "%d: EnumFontFamiliesExA unexpected count %u.\n", i, efnd.total );
strcpy( font.lfFaceName, "Wine Lang Cond (fr)" );
memset( &efnd, 0, sizeof(efnd) );
EnumFontFamiliesExA( dc, &font, enum_fullname_data_proc, (LPARAM)&efnd, 0 );
wcscpy( font_w.lfFaceName, L"Wine Police d'\xe9" "criture (fr)" );
memset( &efnd_w, 0, sizeof(efnd_w) );
EnumFontFamiliesExW( dc, &font_w, enum_fullname_data_proc_w, (LPARAM)&efnd_w, 0 );
/* as wine_langnames3.sfd does not specify (en) name, (fr) is preferred */
if (i == 2) ok( efnd.total == 1, "%d: EnumFontFamiliesExA unexpected count %u.\n", i, efnd.total );
else ok( efnd.total == 0, "%d: EnumFontFamiliesExA unexpected count %u.\n", i, efnd.total );
if (i == 2) ok( efnd_w.total == 1, "%d: EnumFontFamiliesExW unexpected count %u.\n", i, efnd_w.total );
else ok( efnd_w.total == 0, "%d: EnumFontFamiliesExW unexpected count %u.\n", i, efnd_w.total );
/* case matching should not depend on the current locale */
if (i == 2)
{
wcscpy( font_w.lfFaceName, L"Wine POLICE D'\xc9" "CRITURE (fr)" );
memset( &efnd_w, 0, sizeof(efnd_w) );
EnumFontFamiliesExW( dc, &font_w, enum_fullname_data_proc_w, (LPARAM)&efnd_w, 0 );
todo_wine ok( efnd_w.total == 1, "%d: EnumFontFamiliesExW unexpected count %u.\n", i, efnd_w.total );
}
strcpy( font.lfFaceName, "Wine Lang Cond (ko)" );
memset( &efnd, 0, sizeof(efnd) );
......
......@@ -39,8 +39,8 @@ MarkAttachClasses: 1
DEI: 91125
LangName: 1036 \
"" \
"Wine Lang Cond (fr)" \
"Reg (fr)" \
"Wine Police d'+AOkA-criture (fr)" \
"R+AOkA-guli+AOgA-re (fr)" \
"" \
"Wine Lang Cond Reg (fr)"
LangName: 1042 \
......
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