Commit 68f1df23 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

gdi32/tests: Make use of todo_wine_if().

parent 12f82745
...@@ -2952,13 +2952,8 @@ static void test_EnumFontFamilies(const char *font_name, INT font_charset) ...@@ -2952,13 +2952,8 @@ static void test_EnumFontFamilies(const char *font_name, INT font_charset)
ok(!efd.total, "no fonts should be enumerated for empty font_name\n"); ok(!efd.total, "no fonts should be enumerated for empty font_name\n");
for (i = 0; i < efd.total; i++) for (i = 0; i < efd.total; i++)
{ {
/* FIXME: remove completely once Wine is fixed */ /* FIXME: remove completely once Wine is fixed */
if (efd.lf[i].lfCharSet != font_charset) todo_wine_if(efd.lf[i].lfCharSet != font_charset)
{
todo_wine
ok(efd.lf[i].lfCharSet == font_charset, "%d: got charset %d\n", i, efd.lf[i].lfCharSet);
}
else
ok(efd.lf[i].lfCharSet == font_charset, "%d: got charset %d\n", i, efd.lf[i].lfCharSet); ok(efd.lf[i].lfCharSet == font_charset, "%d: got charset %d\n", i, efd.lf[i].lfCharSet);
ok(!strcmp(efd.lf[i].lfFaceName, font_name), "expected %s, got %s\n", ok(!strcmp(efd.lf[i].lfFaceName, font_name), "expected %s, got %s\n",
font_name, efd.lf[i].lfFaceName); font_name, efd.lf[i].lfFaceName);
......
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