##// 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:

r22046:7a9cbb31 default
r31992:3e47a40d default
Show More
test-revert-flags.t
23 lines | 312 B | text/troff | Tads3Lexer
/ tests / test-revert-flags.t
Matt Mackall
tests: replace exit 80 with #require
r22046 #require execbit
Nicolas Dumazet
tests: unify test-revert-flags
r12110
$ hg init repo
$ cd repo
$ echo foo > foo
$ chmod 644 foo
$ hg ci -qAm '644'
$ chmod 755 foo
$ hg ci -qAm '755'
reverting to rev 0
$ hg revert -a -r 0
reverting foo
$ hg st
M foo
$ hg diff --git
diff --git a/foo b/foo
old mode 100755
new mode 100644
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..