##// 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-bad-pull
27 lines | 545 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh -x
mpm@selenic.com
commands: report http exceptions nicely...
r395
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone http://localhost:20059/ copy
mpm@selenic.com
Fix troubles with clone and exception handling...
r503 echo $?
ls copy
mpm@selenic.com
commands: report http exceptions nicely...
r395
cat > dumb.py <<EOF
import BaseHTTPServer, SimpleHTTPServer, signal
def run(server_class=BaseHTTPServer.HTTPServer,
handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
server_address = ('localhost', 20059)
httpd = server_class(server_address, handler_class)
httpd.serve_forever()
signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
run()
EOF
python dumb.py 2>/dev/null &
Thomas Arendsen Hein
Work-around failing tests/test-bad-pull with slow bg process....
r545 sleep 2
mpm@selenic.com
commands: report http exceptions nicely...
r395
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone http://localhost:20059/foo copy2
mpm@selenic.com
Fix troubles with clone and exception handling...
r503 echo $?
mpm@selenic.com
commands: report http exceptions nicely...
r395
mpm@selenic.com
Fix troubles with clone and exception handling...
r503 set +x
Thomas Arendsen Hein
Use "kill $!" to kill running background processes....
r492 kill $!