##// END OF EJS Templates
tests: record few more daemon pids to be safe
Vadim Gelfer -
r2572:d22d730c default
parent child Browse files
Show More
@@ -1,26 +1,27 b''
1 #!/bin/sh
1 #!/bin/sh
2
2
3 hg clone http://localhost:20059/ copy
3 hg clone http://localhost:20059/ copy
4 echo $?
4 echo $?
5 ls copy 2>/dev/null || echo copy: No such file or directory
5 ls copy 2>/dev/null || echo copy: No such file or directory
6
6
7 cat > dumb.py <<EOF
7 cat > dumb.py <<EOF
8 import BaseHTTPServer, SimpleHTTPServer, signal
8 import BaseHTTPServer, SimpleHTTPServer, signal
9
9
10 def run(server_class=BaseHTTPServer.HTTPServer,
10 def run(server_class=BaseHTTPServer.HTTPServer,
11 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
11 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
12 server_address = ('localhost', 20059)
12 server_address = ('localhost', 20059)
13 httpd = server_class(server_address, handler_class)
13 httpd = server_class(server_address, handler_class)
14 httpd.serve_forever()
14 httpd.serve_forever()
15
15
16 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
16 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
17 run()
17 run()
18 EOF
18 EOF
19
19
20 python dumb.py 2>/dev/null &
20 python dumb.py 2>/dev/null &
21 echo $! >> $DAEMON_PIDS
21
22
22 http_proxy= hg clone http://localhost:20059/foo copy2 2>&1 | \
23 http_proxy= hg clone http://localhost:20059/foo copy2 2>&1 | \
23 sed -e 's/404.*/404/' -e 's/Date:.*/Date:/'
24 sed -e 's/404.*/404/' -e 's/Date:.*/Date:/'
24 echo $?
25 echo $?
25
26
26 kill $!
27 kill $!
@@ -1,41 +1,42 b''
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 ls copy 2>/dev/null || 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
11
11
12 def run(server_class=BaseHTTPServer.HTTPServer,
12 def run(server_class=BaseHTTPServer.HTTPServer,
13 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
13 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
14 server_address = ('localhost', 20059)
14 server_address = ('localhost', 20059)
15 httpd = server_class(server_address, handler_class)
15 httpd = server_class(server_address, handler_class)
16 httpd.serve_forever()
16 httpd.serve_forever()
17
17
18 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
18 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
19 run()
19 run()
20 EOF
20 EOF
21
21
22 python dumb.py 2>/dev/null &
22 python dumb.py 2>/dev/null &
23 echo $! >> $DAEMON_PIDS
23
24
24 mkdir remote
25 mkdir remote
25 cd remote
26 cd remote
26 hg init
27 hg init
27 echo foo > bar
28 echo foo > bar
28 hg add bar
29 hg add bar
29 hg commit -m"test" -d "1000000 0"
30 hg commit -m"test" -d "1000000 0"
30 hg tip
31 hg tip
31
32
32 cd ..
33 cd ..
33
34
34 http_proxy= hg clone static-http://localhost:20059/remote local
35 http_proxy= hg clone static-http://localhost:20059/remote local
35
36
36 cd local
37 cd local
37 hg verify
38 hg verify
38 cat bar
39 cat bar
39 http_proxy= hg pull
40 http_proxy= hg pull
40
41
41 kill $!
42 kill $!
General Comments 0
You need to be logged in to leave comments. Login now