X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-vc-list-files-cvs.sh;h=017b8d2460fe0de91d3dac46b3394298ce69930e;hb=ba0163712435ee40583ee8eb0dc289220b31fa35;hp=110be03f54f3b580831fca2181ddca3512f191ea;hpb=b2e2010c7c902235b5efb5bd3c6529f61b093aa4;p=gnulib.git diff --git a/tests/test-vc-list-files-cvs.sh b/tests/test-vc-list-files-cvs.sh index 110be03f5..017b8d246 100755 --- a/tests/test-vc-list-files-cvs.sh +++ b/tests/test-vc-list-files-cvs.sh @@ -16,18 +16,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . */ -tmpdir=vc-cvs-$$ -trap 'st=$?; cd '"`pwd`"' && rm -rf $tmpdir; exit $st' 0 -trap '(exit $?); exit $?' 1 2 13 15 - -if ( diff --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then - compare() { diff -u "$@"; } -elif ( cmp --version < /dev/null 2>&1 | grep GNU ) 2>&1 > /dev/null; then - compare() { cmp -s "$@"; } -else - compare() { cmp "$@"; } -fi +: ${srcdir=.} +. "$srcdir/init.sh"; path_prepend_ "$abs_aux_dir" . +tmpdir=vc-cvs repo=`pwd`/$tmpdir/repo fail=0 @@ -46,7 +38,7 @@ for i in with-cvsu without; do # without cvs, skip the test # The double use of 'exit' is needed for the reference to $? inside the trap. { ( cvs -Q -d "$repo" init ) > /dev/null 2>&1 \ - || { echo "Skipping test: cvs not found in PATH"; (exit 77); exit 77; }; } && + || skip_ "cvs not found in PATH"; } && mkdir w && cd w && mkdir d && touch d/a b c && @@ -59,4 +51,4 @@ for i in with-cvsu without; do test $ok = 0 && fail=1 done -(exit $fail); exit $fail +Exit $fail