Mercurial > public > mercurial-scm > hg
diff tests/test-log @ 2785:e7f70588af30
Test suite for log --follow and --follow-first.
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Thu, 03 Aug 2006 15:12:15 -0700 |
parents | ae5ce3454ef5 |
children | 9826af4841ef |
line wrap: on
line diff
--- a/tests/test-log Thu Aug 03 11:48:56 2006 -0700 +++ b/tests/test-log Thu Aug 03 15:12:15 2006 -0700 @@ -28,3 +28,38 @@ hg log -vf a echo % many renames hg log -vf e + +# log --follow tests +hg init ../follow +cd ../follow +echo base > base +hg ci -Ambase -d '1 0' + +echo r1 >> base +hg ci -Amr1 -d '1 0' +echo r2 >> base +hg ci -Amr2 -d '1 0' + +hg up -C 1 +echo b1 > b1 +hg ci -Amb1 -d '1 0' + +echo % log -f +hg log -f + +hg up -C 0 +echo b2 > b2 +hg ci -Amb2 -d '1 0' + +echo % log -f -r 1:tip +hg log -f -r 1:tip + +hg up -C 3 +hg merge tip +hg ci -mm12 -d '1 0' + +echo postm >> b1 +hg ci -Amb1.1 -d'1 0' + +echo % log --follow-first +hg log --follow-first