From: Behdad Esfahbod Date: Fri, 20 Jan 2017 00:55:04 +0000 (-0800) Subject: [test-ot-math] Add test with nil face/font X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8a5e81a52f56f5f8bf975dc4d9f79bede5d895b;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [test-ot-math] Add test with nil face/font --- diff --git a/test/api/test-ot-math.c b/test/api/test-ot-math.c index b9fcb65..0ca5566 100644 --- a/test/api/test-ot-math.c +++ b/test/api/test-ot-math.c @@ -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(); }