##// END OF EJS Templates
Fix empty pull bug that appeared this morning...
Fix empty pull bug that appeared this morning -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fix empty pull bug that appeared this morning manifest hash: 53e4709a701f03d9905933c80758ba13caf3998c -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCwxdJywK+sNU5EO8RAuoPAJ4tb9fd1Emm21/HLAEpyntaW2uoHQCfcc8z J8LB4mVG3gTsvRtiLZBVV/g= =+2C3 -----END PGP SIGNATURE-----

File last commit:

r503:c6a2e41c default
r522:2f1de824 default
Show More
test-bad-pull
26 lines | 539 B | text/plain | TextLexer
mpm@selenic.com
Fix troubles with clone and exception handling...
r503 #!/bin/bash -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 &
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 $!