t8001: check the exit status of the command being tested
Avoid running the command being tested as an upstream of a pipe; doing so will lose its exit status. While at it, modernise the style of the script. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e0390119b2
commit
4b705f4052
@ -6,10 +6,11 @@ test_description='git annotate'
|
|||||||
PROG='git annotate'
|
PROG='git annotate'
|
||||||
. "$TEST_DIRECTORY"/annotate-tests.sh
|
. "$TEST_DIRECTORY"/annotate-tests.sh
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success 'Annotating an old revision works' '
|
||||||
'Annotating an old revision works' \
|
git annotate file master >result &&
|
||||||
'[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \
|
awk "{ print \$3; }" <result >authors &&
|
||||||
[ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]'
|
test 2 = $(grep A <authors | wc -l) &&
|
||||||
|
test 2 = $(grep B <authors | wc -l)
|
||||||
|
'
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
Loading…
Reference in New Issue
Block a user