[test-paint] g_test_message

This commit is contained in:
Behdad Esfahbod 2022-12-23 13:52:22 -07:00
parent dcab567988
commit a4a86c0ec2
1 changed files with 2 additions and 1 deletions

View File

@ -319,7 +319,8 @@ test_hb_paint (gconstpointer d,
path = g_test_build_filename (G_TEST_DIST, test->font_file, NULL); path = g_test_build_filename (G_TEST_DIST, test->font_file, NULL);
if (FT_New_Face (library, path, 0, &ft_face) != 0) if (FT_New_Face (library, path, 0, &ft_face) != 0)
{ {
g_test_fail ();//_printf ("Failed to create FT_Face for %s", path); g_test_message ("Failed to create FT_Face for %s", path);
g_test_fail ();
g_free (path); g_free (path);
return; return;
} }