From 3c975a857f76c421793d62aaed1ba3382d06994d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 9 Feb 2025 08:58:55 +0000 Subject: [PATCH] [test] Exclude google-benchmark tests by default if meson "recent" https://github.com/harfbuzz/harfbuzz/issues/4153#issuecomment-2646131694 --- meson.build | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meson.build b/meson.build index f3e43b595..31ebf68c4 100644 --- a/meson.build +++ b/meson.build @@ -464,6 +464,12 @@ configure_file(output: 'config.h', configuration: conf) alias_target('lib', libharfbuzz) alias_target('libs', libharfbuzz, libharfbuzz_subset) +if meson.version().version_compare('>=0.57.0') + add_test_setup('default', + exclude_suites: ['google-benchmark'], + is_default: true) +endif + build_summary = { 'Directories': {'prefix': get_option('prefix'),