diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:33:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:33:32 +0000 |
commit | 8bb05ac73a5b448b339ce0bc8d396c82c459b47f (patch) | |
tree | 1fdda006866bca20d41cb206767ea5241e36852f /tools/oss-fuzz.sh | |
parent | Adding debian version 2.39.3-11. (diff) | |
download | util-linux-8bb05ac73a5b448b339ce0bc8d396c82c459b47f.tar.xz util-linux-8bb05ac73a5b448b339ce0bc8d396c82c459b47f.zip |
Merging upstream version 2.40.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tools/oss-fuzz.sh')
-rwxr-xr-x | tools/oss-fuzz.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tools/oss-fuzz.sh b/tools/oss-fuzz.sh index 4aa7f23..c94a5f9 100755 --- a/tools/oss-fuzz.sh +++ b/tools/oss-fuzz.sh @@ -24,8 +24,17 @@ if [[ "$SANITIZER" == undefined ]]; then CXXFLAGS+=" $UBSAN_FLAGS" fi +CONFIGURE_ARGS="--disable-all-programs --enable-libuuid --enable-libfdisk --enable-last --enable-fuzzing-engine --enable-libmount --enable-libblkid" + +LIBC_VERSION="$(dpkg -s libc6 | grep Version | cut -d' ' -f2)" + +# Ubuntu focal uses glibc 2.31 but 2.34 is necessary +if dpkg --compare-versions "$LIBC_VERSION" 'lt' '2.34'; then + CONFIGURE_ARGS="$CONFIGURE_ARGS --disable-year2038" +fi + ./autogen.sh -./configure --disable-all-programs --enable-libuuid --enable-libfdisk --enable-last --enable-fuzzing-engine --enable-libmount --enable-libblkid +./configure $CONFIGURE_ARGS make -j$(nproc) V=1 check-programs for d in "$(dirname $0)"/../tests/ts/fuzzers/test_*_fuzz_files; do |