[test-ot-math] Add test with nil face/font

This commit is contained in:
Behdad Esfahbod 2017-01-19 16:55:04 -08:00
parent 331d07bd40
commit a8a5e81a52
1 changed files with 8 additions and 0 deletions

View File

@ -97,6 +97,14 @@ test_has_data (void)
g_assert(hb_ot_math_has_data (hb_face)); // MATH table available
closeFont();
hb_face = hb_face_get_empty ();
hb_font = hb_font_create (hb_face);
g_assert(!hb_ot_math_has_data (hb_face)); // MATH table not available
hb_font = hb_font_get_empty ();
hb_face = hb_font_get_face (hb_font);
g_assert(!hb_ot_math_has_data (hb_face)); // MATH table not available
cleanupFreeType();
}