# HG changeset patch # User FUJIWARA Katsunori # Date 1350979591 -32400 # Node ID acd4577a568d22d3e58bab28600a5ce0a3f87ce1 # Parent 8ef4b022d56211a1dc4e3a301c1a0906db443916 test: add test for the issue introduced by e410be860393 (issue3669) e410be860393 (released as Mercurial 2.3) introduced the issue that the revset program started with 40 hexadecimal letters caused unexpected result at "hg log" execution. This issue was already fixed by bde1185f406c (released as 2.3.1), but there is no test to examine whether this issue is certainly fixed or not: no test fails even if bde1185f406c is backed out. This patch adds test for this issue. Added test is also confirmed to fail, when it is tested against: - Mercurial 2.3, or - Mercurial 2.3.1 or later with backing bde1185f406c out diff -r 8ef4b022d562 -r acd4577a568d tests/test-revset.t --- a/tests/test-revset.t Fri Oct 19 13:52:34 2012 +0200 +++ b/tests/test-revset.t Tue Oct 23 17:06:31 2012 +0900 @@ -750,6 +750,14 @@ $ log 'min(1 or 2) and not 1' $ log 'last(1 or 2, 1) and not 2' +test revsets started with 40-chars hash (issue3669) + + $ ISSUE3669_TIP=`hg tip --template '{node}'` + $ hg log -r "${ISSUE3669_TIP}" --template '{rev}\n' + 9 + $ hg log -r "${ISSUE3669_TIP}^" --template '{rev}\n' + 8 + tests for 'remote()' predicate: #. (csets in remote) (id) (remote) 1. less than local current branch "default"