##// END OF EJS Templates
Fix test-push-validation under Windows
Fix test-push-validation under Windows

File last commit:

r10398:ace3cf2b default
r10469:b26c4a89 stable
Show More
test-pull
31 lines | 540 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 ..
Mads Kiilerich
tests: don't just silently strip port numbers
r10398 hg clone --pull http://localhost:$HGPORT/ copy | sed -e "s,:$HGPORT/,:\$HGPORT/,"
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
Mads Kiilerich
tests: don't just silently strip port numbers
r10398 hg pull | sed -e "s,:$HGPORT/,:\$HGPORT/,"
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
Sune Foldager
handle file URIs correctly, according to RFC 2396 (issue1153)...
r9996
echo % test file: uri handling
hg pull -q file://../test-doesnt-exist
hg pull -q file:../test
hg pull -q file://foobar`pwd`/../test