commit | 7fc5a30cb4fbe9a4633ab842b0a8cbbcc6f6bd1b | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <[email protected]> | Thu May 12 17:48:20 2011 -0400 |
committer | Behdad Esfahbod <[email protected]> | Thu May 12 17:48:20 2011 -0400 |
tree | 6241ead4c7aeecad94b5442a1af1f90ac9d764c8 | |
parent | 20c8b908ddf50a9814dfdd9fca595f258273cd4f [diff] [blame] |
[API] Add hb_face_make/is_immutable()
diff --git a/test/test-font.c b/test/test-font.c index 9c7d3e4..1b68834 100644 --- a/test/test-font.c +++ b/test/test-font.c
@@ -156,7 +156,9 @@ blob = hb_blob_create (test_data, sizeof (test_data), HB_MEMORY_MODE_READONLY, NULL, NULL); face = hb_face_create (blob, 0); hb_blob_destroy (blob); + g_assert (!hb_face_is_immutable (face)); font = hb_font_create (face); + g_assert (hb_face_is_immutable (face)); hb_face_destroy (face);