From: John Spray Date: Tue, 13 Jan 2015 14:58:57 +0000 (+0000) Subject: qa: set -e explicitly in quota test X-Git-Tag: v0.92~26^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b578a53b0351435a8d9409772f762853bb2241b6;p=ceph.git qa: set -e explicitly in quota test Previously was set in hashbang, which meant that "./quota.sh" was OK, but "sh ./quota.sh" would just run through ignoring errors. Signed-off-by: John Spray --- diff --git a/qa/workunits/fs/misc/quota.sh b/qa/workunits/fs/misc/quota.sh index eb33618612e..ff27a613add 100755 --- a/qa/workunits/fs/misc/quota.sh +++ b/qa/workunits/fs/misc/quota.sh @@ -1,4 +1,7 @@ -#!/bin/bash -ex +#!/bin/bash + +set -e +set -x function expect_false() {