##// END OF EJS Templates
setdiscovery: factorize similar sampling code...
setdiscovery: factorize similar sampling code We are using full sampling of 'fullsamplesize' in both case. The only difference is the debug message. So we factorise the sampling code and put the message in an extra conditional. This is going to help making changes around the sampling logic. Such changes are needed to improve discovery performance on highly headed repository.

File last commit:

r16913:f2719b38 default
r23747:f82173a9 default
Show More
test-debugbundle.t
37 lines | 1.7 KiB | text/troff | Tads3Lexer
/ tests / test-debugbundle.t
Peter Arrenbrecht
commands: add debugbundle command...
r13724
Create a test repository:
$ hg init repo
$ cd repo
$ touch a ; hg add a ; hg ci -ma
$ touch b ; hg add b ; hg ci -mb
$ touch c ; hg add c ; hg ci -mc
$ hg bundle --base 0 --rev tip bundle.hg
2 changesets found
Terse output:
$ hg debugbundle bundle.hg
0e067c57feba1a5694ca4844f05588bb1bf82342
991a3460af53952d10ec8a295d3d2cc2e5fa9690
Verbose output:
$ hg debugbundle --all bundle.hg
Benoit Boissinot
bundler: make parsechunk return the base revision of the delta
r14141 format: id, p1, p2, cset, delta base, len(delta)
Peter Arrenbrecht
commands: add debugbundle command...
r13724
changelog
Benoit Boissinot
bundler: make parsechunk return the base revision of the delta
r14141 0e067c57feba1a5694ca4844f05588bb1bf82342 3903775176ed42b1458a6281db4a0ccf4d9f287a 0000000000000000000000000000000000000000 0e067c57feba1a5694ca4844f05588bb1bf82342 3903775176ed42b1458a6281db4a0ccf4d9f287a 80
991a3460af53952d10ec8a295d3d2cc2e5fa9690 0e067c57feba1a5694ca4844f05588bb1bf82342 0000000000000000000000000000000000000000 991a3460af53952d10ec8a295d3d2cc2e5fa9690 0e067c57feba1a5694ca4844f05588bb1bf82342 80
Peter Arrenbrecht
commands: add debugbundle command...
r13724
manifest
Benoit Boissinot
bundler: make parsechunk return the base revision of the delta
r14141 686dbf0aeca417636fa26a9121c681eabbb15a20 8515d4bfda768e04af4c13a69a72e28c7effbea7 0000000000000000000000000000000000000000 0e067c57feba1a5694ca4844f05588bb1bf82342 8515d4bfda768e04af4c13a69a72e28c7effbea7 55
ae25a31b30b3490a981e7b96a3238cc69583fda1 686dbf0aeca417636fa26a9121c681eabbb15a20 0000000000000000000000000000000000000000 991a3460af53952d10ec8a295d3d2cc2e5fa9690 686dbf0aeca417636fa26a9121c681eabbb15a20 55
Peter Arrenbrecht
commands: add debugbundle command...
r13724
b
Benoit Boissinot
bundler: make parsechunk return the base revision of the delta
r14141 b80de5d138758541c5f05265ad144ab9fa86d1db 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 0e067c57feba1a5694ca4844f05588bb1bf82342 0000000000000000000000000000000000000000 12
Peter Arrenbrecht
commands: add debugbundle command...
r13724
c
Benoit Boissinot
bundler: make parsechunk return the base revision of the delta
r14141 b80de5d138758541c5f05265ad144ab9fa86d1db 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 991a3460af53952d10ec8a295d3d2cc2e5fa9690 0000000000000000000000000000000000000000 12
Peter Arrenbrecht
commands: add debugbundle command...
r13724
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913 $ cd ..