diff --git a/dlls/gdiplus/tests/font.c b/dlls/gdiplus/tests/font.c index 51fd3273aea..8bf12896e7e 100644 --- a/dlls/gdiplus/tests/font.c +++ b/dlls/gdiplus/tests/font.c @@ -166,6 +166,13 @@ static void test_fontfamily (void) ok ((lstrcmpiW(itsName, nonexistant) != 0), "Expected a non-zero value for nonexistant font!\n"); + /* Bitmap fonts are not found */ +todo_wine +{ + stat = GdipCreateFontFamilyFromName (MSSansSerif, NULL, &family); + expect (FontFamilyNotFound, stat); +} + stat = GdipCreateFontFamilyFromName (arial, NULL, &family); expect (Ok, stat);