summaryrefslogtreecommitdiff
path: root/utils/pango-segmentation.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-07-07 00:00:06 +0000
committerMatthias Clasen <mclasen@redhat.com>2021-07-07 00:00:06 +0000
commitcfbf6dc53a61e1665b69149bcc1e003760a49499 (patch)
tree067201c87bd78ebd837fb9c1558a0a81b741f2a3 /utils/pango-segmentation.c
parentf9364a0e6e08140111dc8310eb753c456993c200 (diff)
parent0280fd31b01010b76c85ce7ac0bbff1d9c152933 (diff)
downloadpango-cfbf6dc53a61e1665b69149bcc1e003760a49499.tar.gz
Merge branch 'more-test-coverage2' into 'master'
utils: Remove leftover code See merge request GNOME/pango!360
Diffstat (limited to 'utils/pango-segmentation.c')
-rw-r--r--utils/pango-segmentation.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/utils/pango-segmentation.c b/utils/pango-segmentation.c
index 6931d180..0d5b5a49 100644
--- a/utils/pango-segmentation.c
+++ b/utils/pango-segmentation.c
@@ -83,17 +83,6 @@ show_segmentation (const char *input,
pango_layout_set_text (layout, text, length);
pango_layout_set_attributes (layout, attributes);
- if (pango_layout_get_unknown_glyphs_count (layout) > 0)
- {
- char *msg = g_strdup_printf ("Missing glyphs - skipping. Maybe fonts are missing?");
- g_test_skip (msg);
- g_free (msg);
- g_object_unref (layout);
- pango_attr_list_unref (attributes);
- g_free (text);
- return FALSE;
- }
-
pango_layout_get_log_attrs (layout, &attrs, &len);
for (i = 0, p = text; i < len; i++, p = g_utf8_next_char (p))