tests/test-static-http
changeset 3418 7012c889e8f2
parent 2673 109a22f5434a
child 3464 33b6c8193652
equal deleted inserted replaced
3417:6bd676ee8b99 3418:7012c889e8f2
     1 #!/bin/sh
     1 #!/bin/sh
     2 
     2 
     3 http_proxy= hg clone static-http://localhost:20059/ copy
     3 http_proxy= hg clone static-http://localhost:20059/ copy
     4 echo $?
     4 echo $?
     5 ls copy 2>/dev/null || echo copy: No such file or directory
     5 test -e copy || echo copy: No such file or directory
     6 
     6 
     7 # This server doesn't do range requests so it's basically only good for
     7 # This server doesn't do range requests so it's basically only good for
     8 # one pull
     8 # one pull
     9 cat > dumb.py <<EOF
     9 cat > dumb.py <<EOF
    10 import BaseHTTPServer, SimpleHTTPServer, signal
    10 import BaseHTTPServer, SimpleHTTPServer, signal