mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
4b705f4052
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>
16 lines
345 B
Bash
Executable file
16 lines
345 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='git annotate'
|
|
. ./test-lib.sh
|
|
|
|
PROG='git annotate'
|
|
. "$TEST_DIRECTORY"/annotate-tests.sh
|
|
|
|
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
|