##// END OF EJS Templates
Incorporated most of Aron Griffis suggestions for sh compatibility.
Incorporated most of Aron Griffis suggestions for sh compatibility.

File last commit:

r800:ec85f9e6 default
r804:19388dcb default
Show More
test-pull
22 lines | 267 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
Matt Mackall
Update tests
r642 hg serve -p 20059 > /dev/null &
Thomas Arendsen Hein
Make test-pull work on slow machines, where hg serve needs some time to start.
r790 sleep 1 # wait for server to be started
mpm@selenic.com
Add some more tests...
r336 cd ..
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone http://localhost:20059/ copy
mpm@selenic.com
Add some more tests...
r336 cd copy
hg verify
hg co
cat foo
hg manifest
mpm@selenic.com
Fix empty pull bug that appeared this morning...
r522 hg pull
mpm@selenic.com
Add some more tests...
r336
Thomas Arendsen Hein
Use "kill $!" to kill running background processes....
r492 kill $!