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
This commit is contained in:
Alexis S. L. Carvalho 2006-10-16 18:01:25 -03:00
parent b9e5f69a2d
commit 241db87af8
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
hg clone http://localhost:20059/ copy
echo $?
ls copy 2>/dev/null || echo copy: No such file or directory
test -e copy || echo copy: No such file or directory
cat > dumb.py <<EOF
import BaseHTTPServer, SimpleHTTPServer, signal

View File

@ -11,6 +11,6 @@ hg commit -m "second" -d "1000000 0" sub/b
cat sub/b
hg co 0
cat sub/b 2>/dev/null || echo "sub/b not present"
ls sub 2>/dev/null || echo "sub not present"
test -e sub || echo "sub not present"
true

View File

@ -2,7 +2,7 @@
http_proxy= hg clone static-http://localhost:20059/ copy
echo $?
ls copy 2>/dev/null || echo copy: No such file or directory
test -e copy || echo copy: No such file or directory
# This server doesn't do range requests so it's basically only good for
# one pull