##// END OF EJS Templates
portability fixes for some tests...
Alexis S. L. Carvalho -
r3428:7012c889 default
parent child Browse files
Show More
@@ -1,27 +1,27 b''
1 1 #!/bin/sh
2 2
3 3 hg clone http://localhost:20059/ copy
4 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 7 cat > dumb.py <<EOF
8 8 import BaseHTTPServer, SimpleHTTPServer, signal
9 9
10 10 def run(server_class=BaseHTTPServer.HTTPServer,
11 11 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
12 12 server_address = ('localhost', 20059)
13 13 httpd = server_class(server_address, handler_class)
14 14 httpd.serve_forever()
15 15
16 16 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
17 17 run()
18 18 EOF
19 19
20 20 python dumb.py 2>/dev/null &
21 21 echo $! >> $DAEMON_PIDS
22 22
23 23 http_proxy= hg clone http://localhost:20059/foo copy2 2>&1 | \
24 24 sed -e 's/404.*/404/' -e 's/Date:.*/Date:/'
25 25 echo $?
26 26
27 27 kill $!
@@ -1,16 +1,16 b''
1 1 #!/bin/sh
2 2
3 3 hg init
4 4 echo 123 > a
5 5 hg add a
6 6 hg commit -m "first" -d "1000000 0" a
7 7 mkdir sub
8 8 echo 321 > sub/b
9 9 hg add sub/b
10 10 hg commit -m "second" -d "1000000 0" sub/b
11 11 cat sub/b
12 12 hg co 0
13 13 cat sub/b 2>/dev/null || echo "sub/b not present"
14 ls sub 2>/dev/null || echo "sub not present"
14 test -e sub || echo "sub not present"
15 15
16 16 true
@@ -1,50 +1,50 b''
1 1 #!/bin/sh
2 2
3 3 http_proxy= hg clone static-http://localhost:20059/ copy
4 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 7 # This server doesn't do range requests so it's basically only good for
8 8 # one pull
9 9 cat > dumb.py <<EOF
10 10 import BaseHTTPServer, SimpleHTTPServer, signal
11 11
12 12 def run(server_class=BaseHTTPServer.HTTPServer,
13 13 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
14 14 server_address = ('localhost', 20059)
15 15 httpd = server_class(server_address, handler_class)
16 16 httpd.serve_forever()
17 17
18 18 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
19 19 run()
20 20 EOF
21 21
22 22 python dumb.py 2>/dev/null &
23 23 echo $! >> $DAEMON_PIDS
24 24
25 25 mkdir remote
26 26 cd remote
27 27 hg init
28 28 echo foo > bar
29 29 hg add bar
30 30 hg commit -m"test" -d "1000000 0"
31 31 hg tip
32 32
33 33 cd ..
34 34
35 35 http_proxy= hg clone static-http://localhost:20059/remote local
36 36
37 37 cd local
38 38 hg verify
39 39 cat bar
40 40
41 41 cd ../remote
42 42 echo baz > quux
43 43 hg commit -A -mtest2 -d '100000000 0'
44 44
45 45 cd ../local
46 46 echo '[hooks]' >> .hg/hgrc
47 47 echo 'changegroup = echo changegroup: u=$HG_URL' >> .hg/hgrc
48 48 http_proxy= hg pull
49 49
50 50 kill $!
General Comments 0
You need to be logged in to leave comments. Login now