summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-09-04 15:51:06 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-09-04 15:51:06 -0400
commit12beb39925b5a4574a7cfd86073b59bceb49f791 (patch)
tree3d29793132791b1912417a4efb4e826a88ccb856
parent512663d4ed441dba3de66cd2b4928b717835f72a (diff)
downloadpango-12beb39925b5a4574a7cfd86073b59bceb49f791.tar.gz
Skip thai break tests without libthai
If we don't have libthai, these tests fail. Closes: https://gitlab.gnome.org/GNOME/pango/issues/420
-rw-r--r--tests/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 4c22c12c..c617331f 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -89,9 +89,12 @@ test_breaks_data = [
'breaks/one',
'breaks/two',
'breaks/three',
- 'breaks/four',
]
+if thai_dep.found()
+ test_breaks_data += [ 'breaks/four', ]
+endif
+
test_items_data = [
'itemize/one',
]