David Kahurani (@ReDress) commented about dlls/gdiplus/tests/font.c:
stat = GdipGetFontCollectionFamilyCount(fonts, &count);
ok(stat == Ok, "GdipGetFontCollectionFamilyCount failed, error %d\n", stat);
ok(count == 1, "Expected count 1, got %d\n", count);
}
else if (i == 1 && stat == FileNotFound)
win_skip("Fonts without Microsoft platform names are unsupported on win7.\n");
else
ok(0, "GdipPrivateAddMemoryFont failed, error %d\n", stat);
stat = GdipDeletePrivateFontCollection(&fonts);
ok(stat == Ok, "GdipDeletePrivateFontCollection failed, error %d\n", stat);
winetest_pop_context();
- }
+}
These tests should either be embedded somewhere or a whole test suite for GdipPrivateAddMemoryFont introduced.