##// END OF EJS Templates
switch to the .hg/store layout, fix the tests
switch to the .hg/store layout, fix the tests

File last commit:

r3853:c0b44915 default
r3853:c0b44915 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