##// END OF EJS Templates
py3: use multi-line import in test-wireproto.py...
py3: use multi-line import in test-wireproto.py The reason I did it is that I had a later commit that was adding to the list.

File last commit:

r28627:d7af9b4a default
r28860:50d11dd8 default
Show More
test-glog-topological.t
101 lines | 1.3 KiB | text/troff | Tads3Lexer
/ tests / test-glog-topological.t
Pierre-Yves David
graphlog: add a way to test the 'groupbranchiter' function...
r23565 This test file aims at test topological iteration and the various configuration it can has.
$ cat >> $HGRCPATH << EOF
> [ui]
> logtemplate={rev}\n
> EOF
On this simple example, all topological branch are displayed in turn until we
can finally display 0. this implies skipping from 8 to 3 and coming back to 7
later.
$ hg init test01
$ cd test01
$ hg unbundle $TESTDIR/bundles/remote.hg
adding changesets
adding manifests
adding file changes
added 9 changesets with 7 changes to 4 files (+1 heads)
(run 'hg heads' to see heads, 'hg merge' to merge)
$ hg log -G
o 8
|
| o 7
| |
| o 6
| |
| o 5
| |
| o 4
| |
o | 3
| |
o | 2
| |
o | 1
|/
o 0
Pierre-Yves David
groupbranchiter: support for non-contiguous revsets...
r23567
(display all nodes)
Augie Fackler
graphmod: rename graph-topological config to graph-group-branches...
r23569 $ hg --config experimental.graph-group-branches=1 log -G
Pierre-Yves David
graphlog: add a way to test the 'groupbranchiter' function...
r23565 o 8
|
o 3
|
o 2
|
o 1
|
| o 7
| |
| o 6
| |
| o 5
| |
| o 4
|/
o 0
Pierre-Yves David
groupbranchiter: support for non-contiguous revsets...
r23567
(revset skipping nodes)
Augie Fackler
graphmod: rename graph-topological config to graph-group-branches...
r23569 $ hg --config experimental.graph-group-branches=1 log -G --rev 'not (2+6)'
Pierre-Yves David
groupbranchiter: support for non-contiguous revsets...
r23567 o 8
|
o 3
Martijn Pieters
graphmod: set default edge styles for ascii graphs (BC)...
r28627 :
Pierre-Yves David
groupbranchiter: support for non-contiguous revsets...
r23567 o 1
|
| o 7
Martijn Pieters
graphmod: set default edge styles for ascii graphs (BC)...
r28627 | :
Pierre-Yves David
groupbranchiter: support for non-contiguous revsets...
r23567 | o 5
| |
| o 4
|/
o 0
Pierre-Yves David
groupbranchiter: allow callers to select the first branch...
r23568 (begin) from the other branch
Augie Fackler
graphmod: rename graph-topological config to graph-group-branches...
r23569 $ hg --config experimental.graph-group-branches=1 --config experimental.graph-group-branches.firstbranch=5 log -G
Pierre-Yves David
groupbranchiter: allow callers to select the first branch...
r23568 o 7
|
o 6
|
o 5
|
o 4
|
| o 8
| |
| o 3
| |
| o 2
| |
| o 1
|/
o 0