From: Daan De Meyer Date: Wed, 20 May 2026 07:18:41 +0000 (+0000) Subject: meson: Skip coccinelle suite by default X-Git-Tag: v261-rc1~64^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fde1cccf31521b02f89566449110be7ef98dfee9;p=thirdparty%2Fsystemd.git meson: Skip coccinelle suite by default It's not fully passing yet so disable it by default until it is. clang-tidy follows the same model. --- diff --git a/meson.build b/meson.build index 2f5bece79de..1d2d59e4fa5 100644 --- a/meson.build +++ b/meson.build @@ -15,7 +15,7 @@ project('systemd', 'c', add_test_setup( 'default', - exclude_suites : ['clang-tidy', 'unused-symbols', 'integration-tests'], + exclude_suites : ['clang-tidy', 'coccinelle', 'unused-symbols', 'integration-tests'], exe_wrapper : find_program('tools/test-crash-trace.sh'), is_default : true, )