Mercurial > hg
changeset 4639:c7371aa0c153
test-annotate: add a test for issue 589.
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Wed, 20 Jun 2007 00:10:21 +0200 |
parents | 3c7fc13c4bfa |
children | 178778ca648f 54b735135fd3 |
files | tests/test-annotate tests/test-annotate.out |
diffstat | 2 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-annotate Wed Jun 20 00:10:21 2007 +0200 +++ b/tests/test-annotate Wed Jun 20 00:10:21 2007 +0200 @@ -74,3 +74,19 @@ echo % linkrev vs rev hg annotate -r tip a + +# test issue 589 +# annotate was crashing when trying to --follow something +# like A -> B -> A +echo % generate ABA rename configuration +echo foo > foo +hg add foo +hg ci -m addfoo +hg rename foo bar +hg ci -m renamefoo +hg rename bar foo +hg ci -m renamebar + +echo % annotate after ABA with follow +hg annotate --follow foo +