summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-06-15 21:37:26 -0400
committerMatthias Clasen <mclasen@redhat.com>2022-06-22 13:57:26 -0400
commit2421cf7deec6c898a418eebc99e49c42ee2a4d15 (patch)
treef0ab8b2e0697dcd520a842799b7dc117c0a74ea4
parentc0c45f97ba45a4fac36fab176b777f6c8890de2f (diff)
downloadpango-2421cf7deec6c898a418eebc99e49c42ee2a4d15.tar.gz
Run all tests on MacOs
-rw-r--r--tests/test-font.c6
-rw-r--r--tests/testmisc.c18
2 files changed, 0 insertions, 24 deletions
diff --git a/tests/test-font.c b/tests/test-font.c
index 6bb8be7f..7c3b06db 100644
--- a/tests/test-font.c
+++ b/tests/test-font.c
@@ -326,12 +326,6 @@ test_roundtrip_small_caps (void)
hb_feature_t features[32];
guint num = 0;
- if (strcmp (G_OBJECT_TYPE_NAME (pango_font_map_get_default ()), "PangoCairoCoreTextFontMap") == 0)
- {
- g_test_skip ("Small Caps support needs to be added to PangoCoreTextFontMap");
- return;
- }
-
context = pango_context_new ();
desc = pango_font_description_from_string ("Cantarell Small-Caps 11");
diff --git a/tests/testmisc.c b/tests/testmisc.c
index c2158795..62a9daec 100644
--- a/tests/testmisc.c
+++ b/tests/testmisc.c
@@ -174,12 +174,6 @@ test_run_height (void)
PangoLineIter *iter;
PangoRectangle logical1, logical2;
- if (strcmp (G_OBJECT_TYPE_NAME (pango_font_map_get_default ()), "PangoCairoCoreTextFontMap") == 0)
- {
- g_test_skip ("This test fails on macOS and needs debugging");
- return;
- }
-
context = pango_context_new ();
layout = pango_layout_new (context);
pango_layout_set_text (layout, "one", -1);
@@ -605,12 +599,6 @@ test_empty_line_height (void)
int hint;
int size;
- if (strcmp (G_OBJECT_TYPE_NAME (pango_font_map_get_default ()), "PangoCairoCoreTextFontMap") == 0)
- {
- g_test_skip ("This test fails on macOS and needs debugging");
- return;
- }
-
context = pango_context_new ();
description = pango_font_description_new ();
@@ -813,12 +801,6 @@ test_small_caps_crash (void)
PangoFontDescription *desc;
PangoRectangle ext;
- if (strcmp (G_OBJECT_TYPE_NAME (pango_font_map_get_default ()), "PangoCairoCoreTextFontMap") == 0)
- {
- g_test_skip ("This test needs a fontmap that supports Small-Caps");
- return;
- }
-
context = pango_context_new ();
layout = pango_layout_new (context);
desc = pango_font_description_from_string ("Cantarell Small-Caps 11");