# HG changeset patch # User Alexis S. L. Carvalho # Date 2006-10-16 21:01:25 # Node ID 7012c889e8f2e5c91e5ee95adbb3271581736625 # Parent 6bd676ee8b9914c349c34212728cecbb03fef73b 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 diff --git a/tests/test-bad-pull b/tests/test-bad-pull --- a/tests/test-bad-pull +++ b/tests/test-bad-pull @@ -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 </dev/null || echo "sub/b not present" -ls sub 2>/dev/null || echo "sub not present" +test -e sub || echo "sub not present" true diff --git a/tests/test-static-http b/tests/test-static-http --- a/tests/test-static-http +++ b/tests/test-static-http @@ -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