summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-11-25 08:47:51 -0500
committerMatthias Clasen <mclasen@redhat.com>2021-11-25 08:47:51 -0500
commit553eac2ba028a87718ca20180cabe78fa3bc0204 (patch)
treee920196bc79edae865d1365fb89f894385fa86df
parent2931d89196932f43a337e3244236f2b94ca40aee (diff)
downloadpango-serialization-improvements.tar.gz
Skip test-layout on macOSserialization-improvements
It should work there, but it doesn't.
-rw-r--r--tests/meson.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index ca53d103..1984ed03 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -57,8 +57,13 @@ if cairo_dep.found()
if build_pangoft2
tests += [
[ 'testmisc', [ 'testmisc.c' ], [ libpangocairo_dep, libpangoft2_dep, glib_dep, harfbuzz_dep ] ],
- [ 'test-layout', [ 'test-layout.c', 'test-common.c' ], [ libpangocairo_dep, libpangoft2_dep ] ],
]
+
+ if host_system != 'darwin'
+ tests += [
+ [ 'test-layout', [ 'test-layout.c', 'test-common.c' ], [ libpangocairo_dep, libpangoft2_dep ] ],
+ ]
+ endif
endif
if host_system != 'darwin'