summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2022-02-23 09:27:41 +0000
committerGitHub <noreply@github.com>2022-02-23 09:27:41 +0000
commit80ff9567048d0a4aa57e13e9651713798c7fe7bb (patch)
tree08ddb8a3a7931184fa8d8f638a11271f7d791b3a /test
parent0b6c0b8083cf5eaf9bf741bf595e0c87db223619 (diff)
parentfb53316fde746f0c4bb4313a34f7cfb4e82e87cb (diff)
downloadsystemd-80ff9567048d0a4aa57e13e9651713798c7fe7bb.tar.gz
Merge pull request #22591 from evverx/no-deps
ci: build systemd without optional dependencies
Diffstat (limited to 'test')
-rw-r--r--test/fuzz/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/fuzz/meson.build b/test/fuzz/meson.build
index ccd66c0ccf..80362d4154 100644
--- a/test/fuzz/meson.build
+++ b/test/fuzz/meson.build
@@ -7,10 +7,11 @@ sanitize_address_undefined = custom_target(
project_source_root,
'@OUTPUT@',
'fuzzers',
- '-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@ @1@ -Dc_args=@2@ -Dcpp_args=@2@'.format(
+ '-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@ @1@ -Dc_args=@2@ -Dcpp_args=@2@ -Dskip-deps=@3@'.format(
get_option('optimization'),
get_option('werror') ? '--werror' : '',
- '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION'
+ '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION',
+ get_option('skip-deps')
),
' '.join(cc.cmd_array()),
cxx_cmd])