tests/test-bad-pull
author mpm@selenic.com
Thu, 14 Jul 2005 18:41:36 -0800
changeset 693 10c0264751da
parent 547 4fc63e22b1fe
child 695 085a8145e151
child 705 574869103985
permissions -rwxr-xr-x
Be quiet about broken pipes manifest hash: 3163ebe2f15c3a577456cfdcd2b136c3c7cf7378

#!/bin/sh -x

hg clone http://localhost:20059/ copy
echo $?
ls copy

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 &
sleep 2

hg clone http://localhost:20059/foo copy2
echo $?

set +x
kill $!