[test-face] Relax on face load failure

This commit is contained in:
Behdad Esfahbod 2025-03-13 14:47:34 -06:00
parent 344915c9ea
commit 379688c566

View file

@ -38,7 +38,11 @@ hb_blob_t *master_head = NULL;
static void
test_face (hb_face_t *face)
{
g_assert_nonnull (face);
if (!face)
{
g_test_skip ("Failed to create face");
return;
}
hb_blob_t *head = hb_face_reference_table (face, HEAD_TAG);