##// END OF EJS Templates
merge stable
merge stable

File last commit:

r16334:b9bd95e6 2.1.2 stable
r16337:41b41adb merge default
Show More
test-bad-pull.t
30 lines | 886 B | text/troff | Tads3Lexer
$ "$TESTDIR/hghave" serve || exit 80
$ hg clone http://localhost:$HGPORT/ copy
abort: error: Connection refused
[255]
$ test -d copy
[1]
$ cat > dumb.py <<EOF
> import BaseHTTPServer, SimpleHTTPServer, os, signal
> def run(server_class=BaseHTTPServer.HTTPServer,
> handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
> server_address = ('localhost', int(os.environ['HGPORT']))
> httpd = server_class(server_address, handler_class)
> open("listening", "w")
> httpd.handle_request()
> run()
> EOF
$ python dumb.py 2> log &
$ P=$!
$ while [ ! -f listening ]; do true; done
$ hg clone http://localhost:$HGPORT/foo copy2
abort: HTTP Error 404: * (glob)
[255]
$ wait $P
$ cat log
localhost - - [*] code 404, message File not found (glob)
localhost - - [*] "GET /foo?cmd=capabilities HTTP/1.1" 404 - (glob)