]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
fuzz: tentatively disable fuzz-compress on oss-fuzz 36490/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 22 Feb 2025 20:34:55 +0000 (05:34 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 22 Feb 2025 20:37:05 +0000 (05:37 +0900)
It does not work on oss-fuzz for some reasons. See #11018.

src/fuzz/meson.build

index 8c1b2e91ea01e4bdb845a087de391006b703f421..a1a13950f8c6a897c55e5593222c52dd3771d251 100644 (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