1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

fuzz: tentatively disable fuzz-compress on oss-fuzz

It does not work on oss-fuzz for some reasons. See #11018.
This commit is contained in:
Yu Watanabe 2025-02-23 05:34:55 +09:00
parent 339f2f2eeb
commit 0656b3a083

View File

@ -5,7 +5,6 @@ simple_fuzzers += files(
'fuzz-bus-label.c',
'fuzz-calendarspec.c',
'fuzz-catalog.c',
'fuzz-compress.c',
'fuzz-env-file.c',
'fuzz-hostname-setup.c',
'fuzz-json.c',
@ -14,3 +13,8 @@ simple_fuzzers += files(
'fuzz-varlink.c',
'fuzz-varlink-idl.c',
)
# The following fuzzers do not work on oss-fuzz. See #11018.
if not want_ossfuzz
simple_fuzzers += files('fuzz-compress.c')
endif