X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-vc-list-files-cvs.sh;h=110be03f54f3b580831fca2181ddca3512f191ea;hb=b187ff0528e2a081392a834e684d1d0c161708a7;hp=91bdeac629b8f960f81d60e02e1af1b678c1d172;hpb=0e23601e98463c51915660a53aa51a8c956c3582;p=gnulib.git diff --git a/tests/test-vc-list-files-cvs.sh b/tests/test-vc-list-files-cvs.sh index 91bdeac62..110be03f5 100755 --- a/tests/test-vc-list-files-cvs.sh +++ b/tests/test-vc-list-files-cvs.sh @@ -1,6 +1,6 @@ #!/bin/sh # Unit tests for vc-list-files -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. # This file is part of the GNUlib Library. # # This program is free software: you can redistribute it and/or modify @@ -16,9 +16,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . */ -PATH="$abs_top_srcdir/build-aux":$PATH -export PATH - tmpdir=vc-cvs-$$ trap 'st=$?; cd '"`pwd`"' && rm -rf $tmpdir; exit $st' 0 trap '(exit $?); exit $?' 1 2 13 15 @@ -47,7 +44,9 @@ for i in with-cvsu without; do ok=0 mkdir $tmpdir && cd $tmpdir && # without cvs, skip the test - { cvs -Q -d "$repo" init || exit 77; } && + # 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; }; } && mkdir w && cd w && mkdir d && touch d/a b c &&