##// END OF EJS Templates
Merge with crew.
Merge with crew.

File last commit:

r5384:e3a0c092 default
r5385:caadfbc4 merge default
Show More
test-pull
26 lines | 409 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
Bryan O'Sullivan
Allow tests to run in parallel.
r5384 hg serve -p $HGPORT -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 ..
Bryan O'Sullivan
Allow tests to run in parallel.
r5384 http_proxy= hg clone --pull http://localhost:$HGPORT/ copy | sed -e 's,:[0-9][0-9]*/,/,'
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
Bryan O'Sullivan
Allow tests to run in parallel.
r5384 hg pull | sed -e 's,:[0-9][0-9]*/,/,'
Bryan O'Sullivan
issue 622: pull/unbundle -u updates to default branch if repo was empty
r4891
echo % issue 622
cd ..
hg init empty
cd empty
hg pull -u ../test