##// END OF EJS Templates
test-bad-pull: fix change in error output.
Vadim Gelfer -
r2438:a765f853 default
parent child Browse files
Show More
@@ -1,25 +1,26
1 #!/bin/sh
1 #!/bin/sh
2
2
3 hg clone http://localhost:20059/ copy
3 hg clone http://localhost:20059/ copy
4 echo $?
4 echo $?
5 ls copy 2>/dev/null || echo copy: No such file or directory
5 ls copy 2>/dev/null || echo copy: No such file or directory
6
6
7 cat > dumb.py <<EOF
7 cat > dumb.py <<EOF
8 import BaseHTTPServer, SimpleHTTPServer, signal
8 import BaseHTTPServer, SimpleHTTPServer, signal
9
9
10 def run(server_class=BaseHTTPServer.HTTPServer,
10 def run(server_class=BaseHTTPServer.HTTPServer,
11 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
11 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
12 server_address = ('localhost', 20059)
12 server_address = ('localhost', 20059)
13 httpd = server_class(server_address, handler_class)
13 httpd = server_class(server_address, handler_class)
14 httpd.serve_forever()
14 httpd.serve_forever()
15
15
16 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
16 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
17 run()
17 run()
18 EOF
18 EOF
19
19
20 python dumb.py 2>/dev/null &
20 python dumb.py 2>/dev/null &
21
21
22 http_proxy= hg clone http://localhost:20059/foo copy2
22 http_proxy= hg clone http://localhost:20059/foo copy2 2>&1 | \
23 sed -e 's/404.*/404/' -e 's/Date:.*/Date:/'
23 echo $?
24 echo $?
24
25
25 kill $!
26 kill $!
@@ -1,5 +1,9
1 abort: error: Connection refused
1 abort: error: Connection refused
2 255
2 255
3 copy: No such file or directory
3 copy: No such file or directory
4 abort: HTTP Error 404: File not found
4 abort: HTTP Error 404
5 255
5 Date:
6 Content-Type: text/html
7 Connection: close
8
9 0
General Comments 0
You need to be logged in to leave comments. Login now