gdi32/tests: Fix a test failure on NT4.

This commit is contained in:
Paul Vriens 2009-04-27 19:48:17 +02:00 committed by Alexandre Julliard
parent ffd855d214
commit f043f3db27
1 changed files with 3 additions and 1 deletions

View File

@ -1785,7 +1785,9 @@ static void test_EnumFontFamilies(const char *font_name, INT font_charset)
ok(efdw.total > 0, "fonts enumerated: NULL\n"); ok(efdw.total > 0, "fonts enumerated: NULL\n");
ok(ansi_charset > 0, "NULL family should enumerate ANSI_CHARSET\n"); ok(ansi_charset > 0, "NULL family should enumerate ANSI_CHARSET\n");
ok(symbol_charset > 0, "NULL family should enumerate SYMBOL_CHARSET\n"); ok(symbol_charset > 0, "NULL family should enumerate SYMBOL_CHARSET\n");
ok(russian_charset > 0, "NULL family should enumerate RUSSIAN_CHARSET\n"); ok(russian_charset > 0 ||
broken(russian_charset == 0), /* NT4 */
"NULL family should enumerate RUSSIAN_CHARSET\n");
} }
efdw.total = 0; efdw.total = 0;