##// END OF EJS Templates
patch: support diff data loss detection and upgrade...
patch: support diff data loss detection and upgrade In worst case, generating diff in upgrade mode can be two times more expensive than generating it in git mode directly: we may have to regenerate the whole diff again whenever a git feature is detected. Also, the first diff attempt is completely buffered instead of being streamed. That said, even without having profiled it yet, I am convinced we can fast-path the upgrade mode if necessary were it to be used in regular diff commands, and not only in mq where avoiding data loss is worth the price.

File last commit:

r3853:c0b44915 default
r10189:e451e599 default
Show More
test-pull-permission
19 lines | 181 B | text/plain | TextLexer
/ tests / test-pull-permission
mpm@selenic.com
clone: fall back to pull if we can't lock the source repo
r1244 #!/bin/sh
mkdir a
cd a
hg init
echo foo > b
hg add b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg ci -m "b" -d "1000000 0"
mpm@selenic.com
clone: fall back to pull if we can't lock the source repo
r1244
Benoit Boissinot
switch to the .hg/store layout, fix the tests
r3853 chmod -w .hg/store
mpm@selenic.com
clone: fall back to pull if we can't lock the source repo
r1244
cd ..
hg clone a b
Benoit Boissinot
make test-pull-permission cleanup correctly in case of errors
r1750
Benoit Boissinot
switch to the .hg/store layout, fix the tests
r3853 chmod +w a/.hg/store # let test clean up
Benoit Boissinot
make test-pull-permission cleanup correctly in case of errors
r1750
mpm@selenic.com
clone: fall back to pull if we can't lock the source repo
r1244 cd b
hg verify