Skip Thai character test when libthai is unavailable. Taken from upstream bug tracker: https://gitlab.gnome.org/GNOME/pango/merge_requests/161 https://gitlab.gnome.org/GNOME/pango/commit/b73284747ac937e31dc9191f84ed6e24284c88ee diff --git a/tests/test-break.c b/tests/test-break.c index 8549b678bba69360d07dce3af21d915412f20d51..47fa3009165e19a331aa04a0df4351ae2323933b 100644 --- a/tests/test-break.c +++ b/tests/test-break.c @@ -305,6 +305,12 @@ main (int argc, char *argv[]) if (!strstr (name, "break")) continue; +#ifndef HAVE_LIBTHAI + /* four.break involves Thai, so only test it when we have libthai */ + if (strstr (name, "four.break")) + continue; +#endif + path = g_strdup_printf ("/break/%s", name); g_test_add_data_func_full (path, g_test_build_filename (G_TEST_DIST, "breaks", name, NULL), test_break, g_free); s='sub'>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/mail.scm
AgeCommit message (Expand)Author
2020-03-16tests: opensmtpd: Check /var/spool/mail instead of /var/mail....Ludovic Courtès
2020-03-16tests: opensmtpd: Gracefully handle test failure....Ludovic Courtès
2020-03-09tests: getmail: Provide a pre-initialized user account password....Ludovic Courtès
2020-01-31gnu: Update opensmtpd configuration grammar....Tobias Geerinckx-Rice
2020-01-20tests: mail: Remove %getmail-os from the bottom of the file....Christopher Baines
2019-06-19tests: Fix opensmtpd test....Tobias Geerinckx-Rice
2019-05-31services: Add getmail....Christopher Baines
2018-10-18services: dhcp-client: Deprecate 'dhcp-client-service' procedure....Ludovic Courtès
2018-06-13tests: Honor the return value of 'start-service'....Clément Lassieur
2018-03-09tests: mail: Add test for dovecot....Oleg Pykhalov
2017-07-20tests: Use 'virtual-machine' records instead of monadic procedures....Ludovic Courtès
2017-04-19tests: mail: Add test for exim...Carlo Zancanaro
2017-04-01tests: Introduce 'simple-operating-system' and use it....Ludovic Courtès
2016-11-27tests: Add 'opensmtpd-service-type' test....宋文武