From 553eac2ba028a87718ca20180cabe78fa3bc0204 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 25 Nov 2021 08:47:51 -0500 Subject: Skip test-layout on macOS It should work there, but it doesn't. --- tests/meson.build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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' -- cgit v1.2.1