Skip to content

Commit

Permalink
t8001: check the exit status of the command being tested
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Mar 30, 2011
1 parent e039011 commit 4b705f4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions t/t8001-annotate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ test_description='git annotate'
PROG='git annotate'
. "$TEST_DIRECTORY"/annotate-tests.sh

test_expect_success \
'Annotating an old revision works' \
'[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \
[ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]'

test_expect_success 'Annotating an old revision works' '
git annotate file master >result &&
awk "{ print \$3; }" <result >authors &&
test 2 = $(grep A <authors | wc -l) &&
test 2 = $(grep B <authors | wc -l)
'

test_done

0 comments on commit 4b705f4

Please sign in to comment.