##// END OF EJS Templates
Merge with crew-stable
Merge with crew-stable

File last commit:

r3736:ad3d5b43 default
r4134:9dc64c84 merge default
Show More
test-pull
20 lines | 279 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add some more tests...
r336
mkdir test
cd test
echo foo>foo
hg init
hg addremove
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m 1
mpm@selenic.com
Add some more tests...
r336 hg verify
Thomas Arendsen Hein
Don't use mktemp in tests, we're already in a secure temp dir.
r1786 hg serve -p 20059 -d --pid-file=hg.pid
Vadim Gelfer
tests: add timeouts, make run-tests.py clean up dead daemon processes...
r2571 cat hg.pid >> $DAEMON_PIDS
mpm@selenic.com
Add some more tests...
r336 cd ..
Vadim Gelfer
add support for streaming clone....
r2612 http_proxy= hg clone --pull http://localhost:20059/ copy
mpm@selenic.com
Add some more tests...
r336 cd copy
hg verify
hg co
cat foo
Matt Mackall
make manifest friendlier...
r3736 hg manifest --debug
mpm@selenic.com
Fix empty pull bug that appeared this morning...
r522 hg pull