about summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorJohn Keeping2013-04-10 13:11:57 +0100
committerJason A. Donenfeld2013-04-10 14:14:06 +0200
commit880223dc845e8b502e753425b889cbb70b73478e (patch)
tree4a3fcce3c15da5875cd548c2a80e8f1934939c2e /tests
parentcgit.c: Do not restore unset environment variables (diff)
downloadcgit-880223dc845e8b502e753425b889cbb70b73478e.tar.gz
cgit-880223dc845e8b502e753425b889cbb70b73478e.zip
t0109: chain operations with &&
Without '&&' between operations, we will not detect if strace or cgit
exit with an error status, which would cause a false positive test
status in this case.

Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/t0109-gitconfig.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t0109-gitconfig.sh b/tests/t0109-gitconfig.sh index cdd570b..f64e691 100755 --- a/tests/t0109-gitconfig.sh +++ b/tests/t0109-gitconfig.sh
@@ -18,7 +18,7 @@ test_expect_success 'no access to $HOME' '
18 -E HOME="$non_existant_path" \ 18 -E HOME="$non_existant_path" \
19 -E CGIT_CONFIG="$PWD/cgitrc" \ 19 -E CGIT_CONFIG="$PWD/cgitrc" \
20 -E QUERY_STRING="url=foo/commit" \ 20 -E QUERY_STRING="url=foo/commit" \
21 -e access -f -o strace.out cgit 21 -e access -f -o strace.out cgit &&
22 test_must_fail grep "$non_existant_path" strace.out 22 test_must_fail grep "$non_existant_path" strace.out
23' 23'
24 24