diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-11-16 10:32:45 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-11-16 10:42:52 -0500 |
commit | c8b2c31348361f7549d2ee3399fdb1a98ca76f9b (patch) | |
tree | 9b7de5556fa58538022cfedc2c26c513af023f79 /tests/meson.build | |
parent | 7c3b6138a125899b14460f68751de03103523447 (diff) | |
download | pango-c8b2c31348361f7549d2ee3399fdb1a98ca76f9b.tar.gz |
ci: Don't run testrandom on macOs
It fails there (although it shouldn't), and I
don't have the means to debug it.
Diffstat (limited to 'tests/meson.build')
-rw-r--r-- | tests/meson.build | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build index 81170c15..b5eda3e7 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -53,9 +53,14 @@ if cairo_dep.found() [ 'cxx-test', [ 'cxx-test.cpp' ], [ libpangocairo_dep, gobject_dep, harfbuzz_dep ] ], [ 'test-harfbuzz', [ 'test-harfbuzz.c' ], [ libpangocairo_dep, gobject_dep, harfbuzz_dep ] ], [ 'test-break', [ 'test-break.c', 'test-common.c', 'validate-log-attrs.c' ], [libpangocairo_dep, glib_dep, harfbuzz_dep ] ], - [ 'testrandom', [ 'testrandom.c' ], [ libpangocairo_dep, gio_dep ] ], ] + if host_system != 'darwin' + tests += [ + [ 'testrandom', [ 'testrandom.c' ], [ libpangocairo_dep, gio_dep ] ], + ] + endif + if pango_cairo_backends.contains('png') tests += [ [ 'test-pangocairo-threads', [ 'test-pangocairo-threads.c' ], [ libpangocairo_dep, cairo_dep ] ], |