[test-directwrite] Fix test

This commit is contained in:
Behdad Esfahbod 2025-03-22 19:57:51 -06:00
parent 55743b239f
commit 3259f9f89a

View file

@ -45,7 +45,8 @@ get_dwfontface (const char *font_path)
dw_font_face->AddRef ();
hb_face_destroy (face);
// Don't destroy face, as dw_font_face is backed by its data I think.
//hb_face_destroy (face);
return dw_font_face;
}
@ -79,12 +80,13 @@ test_native_directwrite_variations (void)
hb_font_t *font;
unsigned int length;
dwfontface = get_dwfontface ("fonts/AdobeVFPrototype.abc.ttf");
dwfontface = get_dwfontface ("fonts/AdobeVFPrototype.abc.otf");
g_assert_nonnull (dwfontface);
font = hb_directwrite_font_create (dwfontface);
hb_font_get_var_coords_normalized(font, &length);
g_assert_cmpuint (length, !=, 0);
// Currently we optimize out coords if none is non-zero
//g_assert_cmpuint (length, !=, 0);
hb_font_destroy (font);