Skip to content
Snippets Groups Projects
Commit 30084381 authored by Iustin Pop's avatar Iustin Pop
Browse files

Enable pipefail mode for shell tests


These allow more accurate checks.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
parent 55ffacfa
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment