From: Brad Hubbard Date: Thu, 26 Nov 2020 01:18:02 +0000 (+1000) Subject: run-make-check.sh: Don't run tests if build fails X-Git-Tag: v16.1.0~474^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38292%2Fhead;p=ceph.git run-make-check.sh: Don't run tests if build fails When run-make was taken out we lost the 'set -e' call and therefore continue after an error. Signed-off-by: Brad Hubbard --- diff --git a/run-make-check.sh b/run-make-check.sh index 6e032e9f1ef..b23f1221d46 100755 --- a/run-make-check.sh +++ b/run-make-check.sh @@ -20,6 +20,8 @@ source src/script/run-make.sh +set -e + function run() { # to prevent OSD EMFILE death on tests, make sure ulimit >= 1024 $DRY_RUN ulimit -n $(ulimit -Hn)