##// END OF EJS Templates
merge with stable
merge with stable

File last commit:

r12156:4c94b6d0 default
r12278:c4c2ba55 merge default
Show More
test-pull-permission
19 lines | 166 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
Martin Geisler
tests: remove unneeded -d flags...
r12156 hg ci -m "b"
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