##// END OF EJS Templates
portability fixes for some tests...
Alexis S. L. Carvalho -
r3428:7012c889 default
parent child Browse files
Show More
@@ -2,7 +2,7 b''
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 test -e copy || 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
@@ -11,6 +11,6 b' hg commit -m "second" -d "1000000 0" sub'
11 cat sub/b
11 cat sub/b
12 hg co 0
12 hg co 0
13 cat sub/b 2>/dev/null || echo "sub/b not present"
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 true
16 true
@@ -2,7 +2,7 b''
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
General Comments 0
You need to be logged in to leave comments. Login now