From: Ryan Anderson Date: Tue, 4 Jul 2006 01:30:01 +0000 (-0400) Subject: annotate: Support annotation of files on other revisions. X-Git-Tag: v1.4.2-rc1~95 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f560069bc59e155c3078ba5482ce69ded68849df;p=git.git annotate: Support annotation of files on other revisions. This is a bug fix, and cleans up one or two other things spotted during the course of tracking down the main bug here. Also, the test-suite is updated to reflect this case. Signed-off-by: Ryan Anderson (cherry picked from 2f7554b4db3ab2c2d3866b160245c91c9236fc9a commit) Signed-off-by: Junio C Hamano --- diff --git a/t/t8001-annotate.sh b/t/t8001-annotate.sh index 2496397da..70e2ad23a 100755 --- a/t/t8001-annotate.sh +++ b/t/t8001-annotate.sh @@ -6,4 +6,10 @@ test_description='git-annotate' PROG='git annotate' . ../annotate-tests.sh +test_expect_success \ + 'Annotating an old revision works' \ + '[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") == 2 ] && \ + [ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") == 2 ]' + + test_done