diff --git a/htools/offline-test.sh b/htools/offline-test.sh index 3b86d6be05fd672187efae255b3245d31134593b..f5708a19585ee956a9618e474a8ce4de37dac83f 100755 --- a/htools/offline-test.sh +++ b/htools/offline-test.sh @@ -21,6 +21,7 @@ # programs, checking basic command line functionality. set -e +set -o pipefail . $(dirname $0)/cli-tests-defs.sh @@ -49,7 +50,7 @@ echo OK echo Checking extra arguments for prog in hspace hbal hinfo; do - ! $prog unexpected-argument 2>&1 | \ + (! $prog unexpected-argument 2>&1 ) | \ grep -q "Error: this program doesn't take any arguments" done echo OK @@ -131,10 +132,10 @@ echo OK echo IAllocator checks # test that on invalid files it can't parse the request -! hail /dev/null 2>&1 | grep -q "Invalid JSON" +(! hail /dev/null 2>&1 ) | grep -q "Invalid JSON" ! hail <(echo '[]') >/dev/null 2>&1 -! hail <(echo '{}') 2>&1 | grep -q "key 'request' not found" -! hail <(echo '{"request": 0}') 2>&1 | grep -q "key 'request'" +(! hail <(echo '{}') 2>&1 ) | grep -q "key 'request' not found" +(! hail <(echo '{"request": 0}') 2>&1 ) | grep -q "key 'request'" ! hail $TESTDATA_DIR/hail-invalid-reloc.json >/dev/null 2>&1 # just test that it can read the file, print the cluster and generate