comparison tests/test-bad-pull @ 3418:7012c889e8f2

portability fixes for some tests Apparently the ls on OS X 10.3.9 exits with success even if the file given on the command line doesn't exist
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Mon, 16 Oct 2006 18:01:25 -0300
parents d22d730c96ed
children 33b6c8193652
comparison
equal deleted inserted replaced
3417:6bd676ee8b99 3418:7012c889e8f2
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 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
9 9
10 def run(server_class=BaseHTTPServer.HTTPServer, 10 def run(server_class=BaseHTTPServer.HTTPServer,