##// END OF EJS Templates
context: possibly yield initial fctx in blockdescendants()...
context: possibly yield initial fctx in blockdescendants() If initial 'fctx' has changes in line range with respect to its parents, we yield it first. This makes 'followlines(..., descend=True)' consistent with 'descendants()' revset which yields the starting revision. We reuse one iteration of blockancestors() which does exactly what we want. In test-annotate.t, adjust 'startrev' in one case to cover the situation where the starting revision does not touch specified line range.

File last commit:

r17490:a03c3ba3 default
r31992:3e47a40d default
Show More
test-debugindexdot.t
25 lines | 435 B | text/troff | Tads3Lexer
/ tests / test-debugindexdot.t
timeless@mozdev.org
spelling: exercise
r17490 Just exercise debugindexdot
Pradeepkumar Gayam
tests: unify tests-debugindexdot
r11923 Create a short file history including a merge.
$ hg init t
$ cd t
$ echo a > a
$ hg ci -qAm t1 -d '0 0'
$ echo a >> a
$ hg ci -m t2 -d '1 0'
$ hg up -qC 0
$ echo b >> a
$ hg ci -m t3 -d '2 0'
created new head
$ HGMERGE=true hg merge -q
$ hg ci -m merge -d '3 0'
$ hg debugindexdot .hg/store/data/a.i
digraph G {
-1 -> 0
0 -> 1
0 -> 2
2 -> 3
1 -> 3
}
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..