diff options
author | Simon McVittie <smcv@debian.org> | 2020-09-25 16:12:01 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-01-03 20:32:55 -0500 |
commit | 221a35e6546f306927749a212f6c8a95ca7d8e46 (patch) | |
tree | 7e84be80b7df4d925aea77fa87a6f80a52469dc7 /tests/test-break.c | |
parent | 896bf51b0d525c7393d04eca2d57c838df406dfe (diff) | |
download | pango-221a35e6546f306927749a212f6c8a95ca7d8e46.tar.gz |
Revert "testsuite: Don't use g_test_skip"
When versions of Meson with bug
https://github.com/mesonbuild/meson/issues/7515 are no longer widespread,
the Pango test suite should diagnose which tests are skipped again.
Versions 0.55.0 to 0.55.2 inclusive have the bug; version 0.55.3 is OK.
This reverts commit 440f9c2609b7f5f9d8f65619b029a5eb660de88b.
Signed-off-by: Simon McVittie <smcv@debian.org>
Diffstat (limited to 'tests/test-break.c')
-rw-r--r-- | tests/test-break.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test-break.c b/tests/test-break.c index c4359643..413fd088 100644 --- a/tests/test-break.c +++ b/tests/test-break.c @@ -72,12 +72,9 @@ test_file (const gchar *filename, GString *string) if (pango_layout_get_unknown_glyphs_count (layout) > 0) { -#if 0 - // See https://github.com/mesonbuild/meson/issues/7515 char *msg = g_strdup_printf ("Missing glyphs - skipping %s. Maybe fonts are missing?", filename); g_test_skip (msg); g_free (msg); -#endif g_free (contents); g_object_unref (layout); pango_attr_list_unref (attributes); @@ -263,12 +260,9 @@ test_break (gconstpointer d) setlocale (LC_ALL, "en_US.utf8"); if (strstr (setlocale (LC_ALL, NULL), "en_US") == NULL) { -#if 0 - // See https://github.com/mesonbuild/meson/issues/7515 char *msg = g_strdup_printf ("Locale en_US.UTF-8 not available, skipping break %s", filename); g_test_skip (msg); g_free (msg); -#endif g_free (old_locale); return; } |