summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 12f6c30)
raw | patch | inline | side by side (parent: 12f6c30)
author | Ryan Anderson <ryan@michonline.com> | |
Tue, 4 Jul 2006 01:30:01 +0000 (21:30 -0400) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 4 Jul 2006 01:41:58 +0000 (18:41 -0700) |
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 <ryan@michonline.com>
(cherry picked from 2f7554b4db3ab2c2d3866b160245c91c9236fc9a commit)
Signed-off-by: Junio C Hamano <junkio@cox.net>
course of tracking down the main bug here.
Also, the test-suite is updated to reflect this case.
Signed-off-by: Ryan Anderson <ryan@michonline.com>
(cherry picked from 2f7554b4db3ab2c2d3866b160245c91c9236fc9a commit)
Signed-off-by: Junio C Hamano <junkio@cox.net>
t/t8001-annotate.sh | patch | blob | history |
diff --git a/t/t8001-annotate.sh b/t/t8001-annotate.sh
index 2496397da3c335997779bae43ba37ec6d32810de..70e2ad23ae2bdc80aed196f2618c957d98d78410 100755 (executable)
--- a/t/t8001-annotate.sh
+++ b/t/t8001-annotate.sh
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