##// END OF EJS Templates
options: kill -d for debug...
options: kill -d for debug -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 options: kill -d for debug You must now use --debug. This is a preparatory step for changing the option parsing from: hg [global-opts] <command> [command-opts] to hg [global-opts] <command> [global or command opts] manifest hash: ec5ecc687340baa109a98b742f1cd8d1f4aadeed -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCx4urywK+sNU5EO8RAl90AJ0fwKU/GwHpJvlTFl5naeJbkceWewCgh4jK kaTSSodACgPzgbFiid5RL4Y= =siEe -----END PGP SIGNATURE-----

File last commit:

r547:4fc63e22 merge default
r591:eb46971f default
Show More
test-pull
21 lines | 229 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
hg commit -t "1"
hg verify
mpm@selenic.com
test suite: fix timezone problems and port collision problem...
r382 hg serve -p 20059 2>/dev/null &
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 $!