##// END OF EJS Templates
test-serve: wait before killing to always hide the "killed!" message....
test-serve: wait before killing to always hide the "killed!" message. Without the sleeps slower systems never display never display "killed!" while faster systems sometimes or nearly always display it.

File last commit:

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