##// END OF EJS Templates
Merge with TAH...
Merge with TAH -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Merge with TAH manifest hash: 1742d7ba2093dc643b57e45167cb2d794212cbb9 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxPCQywK+sNU5EO8RAkr0AJ9qut/31lCLQ/xY3FWaF3c21RhS7wCfW1eV 3WexPDsJldMAr3V5vc9eowA= =pJYu -----END PGP SIGNATURE-----

File last commit:

r547:4fc63e22 merge default
r547:4fc63e22 merge 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 $!