##// END OF EJS Templates
Removed obsolete workaround for error message in tests/test-static-http.
Thomas Arendsen Hein -
r1935:d32c4425 default
parent child Browse files
Show More
@@ -1,42 +1,41 b''
1 1 #!/bin/sh
2 2
3 http_proxy= hg clone old-http://localhost:20059/ copy > clonefail.out 2>&1
3 http_proxy= hg clone old-http://localhost:20059/ copy
4 4 echo $?
5 sed 's/[0-9]//g' < clonefail.out
6 5 ls copy
7 6
8 7 # This server doesn't do range requests so it's basically only good for
9 8 # one pull
10 9 cat > dumb.py <<EOF
11 10 import BaseHTTPServer, SimpleHTTPServer, signal
12 11
13 12 def run(server_class=BaseHTTPServer.HTTPServer,
14 13 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
15 14 server_address = ('localhost', 20059)
16 15 httpd = server_class(server_address, handler_class)
17 16 httpd.serve_forever()
18 17
19 18 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
20 19 run()
21 20 EOF
22 21
23 22 python dumb.py 2>/dev/null &
24 23
25 24 mkdir remote
26 25 cd remote
27 26 hg init
28 27 echo foo > bar
29 28 hg add bar
30 29 hg commit -m"test" -d "1000000 0"
31 30 hg tip
32 31
33 32 cd ..
34 33
35 34 http_proxy= hg clone old-http://localhost:20059/remote local
36 35
37 36 cd local
38 37 hg verify
39 38 cat bar
40 39 http_proxy= hg pull
41 40
42 41 kill $!
@@ -1,23 +1,23 b''
1 abort: Connection refused
1 2 255
2 abort: Connection refused
3 3 ls: copy: No such file or directory
4 4 changeset: 0:53e17d176ae6
5 5 tag: tip
6 6 user: test
7 7 date: Mon Jan 12 13:46:40 1970 +0000
8 8 summary: test
9 9
10 10 requesting all changes
11 11 adding changesets
12 12 adding manifests
13 13 adding file changes
14 14 added 1 changesets with 1 changes to 1 files
15 15 checking changesets
16 16 checking manifests
17 17 crosschecking files in changesets and manifests
18 18 checking files
19 19 1 files, 1 changesets, 1 total revisions
20 20 foo
21 21 pulling from old-http://localhost:20059/remote
22 22 searching for changes
23 23 no changes found
General Comments 0
You need to be logged in to leave comments. Login now