mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[test-face] Relax on face load failure
This commit is contained in:
parent
344915c9ea
commit
379688c566
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue