view tests/test-bad-pull @ 574:af7e21f3b2d9

Update test-diffdir output -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Update test-diffdir output manifest hash: cd0fb3a3708897fe959852c48de1804fb0b74bf4 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxwmcywK+sNU5EO8RAlRCAJ9SBrMQLSRVY1j3V1YO25dGbIN18QCfTbHJ 6/4+xEBX2j3VxUf1g3ayce8= =kcDR -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sat, 02 Jul 2005 13:39:40 -0800
parents 4fc63e22b1fe
children 085a8145e151 574869103985
line wrap: on
line source

#!/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 $!