From: Yu Watanabe Date: Sat, 22 Feb 2025 20:34:55 +0000 (+0900) Subject: fuzz: tentatively disable fuzz-compress on oss-fuzz X-Git-Tag: v258-rc1~1267^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0656b3a083b48a2cccb90ee1f7fed949d9283b76;p=thirdparty%2Fsystemd.git fuzz: tentatively disable fuzz-compress on oss-fuzz It does not work on oss-fuzz for some reasons. See #11018. --- diff --git a/src/fuzz/meson.build b/src/fuzz/meson.build index 8c1b2e91ea0..a1a13950f8c 100644 --- a/src/fuzz/meson.build +++ b/src/fuzz/meson.build @@ -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