diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-07-30 11:52:25 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-07-30 12:31:09 -0400 |
commit | 440f9c2609b7f5f9d8f65619b029a5eb660de88b (patch) | |
tree | 333a57ad9e5fff59655a287ac7e13ff2fe04e57e /tests/test-layout.c | |
parent | 948e0b0cb5319adfa956f08c40dd1ea85855a424 (diff) | |
download | pango-440f9c2609b7f5f9d8f65619b029a5eb660de88b.tar.gz |
testsuite: Don't use g_test_skip
meson 0.55 considers tests using it to be FAIL.
I disagree, but lets quietly skip until 0.55.1
is available.
Diffstat (limited to 'tests/test-layout.c')
-rw-r--r-- | tests/test-layout.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test-layout.c b/tests/test-layout.c index 52617ce6..58ab46eb 100644 --- a/tests/test-layout.c +++ b/tests/test-layout.c @@ -308,9 +308,12 @@ test_layout (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 layout %s", filename); g_test_skip (msg); g_free (msg); +#endif return; } |