From: Andrew Bartlett Date: Wed, 26 Aug 2020 00:47:04 +0000 (+1200) Subject: oss-fuzz: Try harder to ensure we always fail fast X-Git-Tag: talloc-2.3.2~719 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49f58b2b093b962e2f3e060b1322a4e61be678a1;p=thirdparty%2Fsamba.git oss-fuzz: Try harder to ensure we always fail fast During a previous attempt to fix the LANG= issue I changed the script invocation to be via a shell, so the set -x et al ensures these are always in place and we fail fast rather than failures only being detected by lack of output. Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/lib/fuzzing/oss-fuzz/build_samba.sh b/lib/fuzzing/oss-fuzz/build_samba.sh index 5d3bc3ff6c3..f798f8feb6a 100755 --- a/lib/fuzzing/oss-fuzz/build_samba.sh +++ b/lib/fuzzing/oss-fuzz/build_samba.sh @@ -1,4 +1,4 @@ -#!/bin/sh -eux +#!/bin/sh # # This is not a general-purpose build script, but instead one specific to the Google oss-fuzz compile environment. # @@ -14,6 +14,13 @@ # Additional arguments are passed to configure, to allow this to be # tested in autobuild.py # + +# Ensure we give good trace info, fail right away and fail with unset +# variables +set -e +set -x +set -u + ADDITIONAL_CFLAGS="$CFLAGS" export ADDITIONAL_CFLAGS CFLAGS=""