comparison tests/test-bad-pull @ 395:fbe8834923c5

commands: report http exceptions nicely -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 commands: report http exceptions nicely manifest hash: 37760b304eedffcea9c1c01d03334cf4f6048fd3 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCsx6QywK+sNU5EO8RAnyEAKC3RBzwlVAyI+SSYHj1Z+Psn1Aq3gCcDQJf pqPitXBuvdZbLdK0ti2kFOk= =ZjC9 -----END PGP SIGNATURE-----
author mpm@selenic.com
date Fri, 17 Jun 2005 11:03:44 -0800
parents
children c5705ab9cebd
comparison
equal deleted inserted replaced
394:e6db25785b00 395:fbe8834923c5
1 #!/bin/bash
2
3 mkdir copy
4 cd copy
5 hg init http://localhost:20059/
6 hg verify
7 hg co
8 cat foo
9 hg manifest
10
11 cat > dumb.py <<EOF
12 import BaseHTTPServer, SimpleHTTPServer, signal
13
14 def run(server_class=BaseHTTPServer.HTTPServer,
15 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
16 server_address = ('localhost', 20059)
17 httpd = server_class(server_address, handler_class)
18 httpd.serve_forever()
19
20 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
21 run()
22 EOF
23
24 python dumb.py 2>/dev/null &
25
26 mkdir copy2
27 cd copy2
28 hg init http://localhost:20059/foo
29 hg verify
30 hg co
31 cat foo
32 hg manifest
33
34 kill %1