all repos — cgit @ 880223dc845e8b502e753425b889cbb70b73478e

a hyperfast web frontend for git written in c

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>
John Keeping john@keeping.me.uk
Wed, 10 Apr 2013 13:11:57 +0100
commit

880223dc845e8b502e753425b889cbb70b73478e

parent

8d8e84e72a24f474a6659ca04d0906723b2ac975

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M tests/t0109-gitconfig.shtests/t0109-gitconfig.sh

@@ -18,7 +18,7 @@ strace \

-E HOME="$non_existant_path" \ -E CGIT_CONFIG="$PWD/cgitrc" \ -E QUERY_STRING="url=foo/commit" \ - -e access -f -o strace.out cgit + -e access -f -o strace.out cgit && test_must_fail grep "$non_existant_path" strace.out '