X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft9600-cvsimport.sh;h=0b115a17ab46e02ca7ec67f08feada0c48c8628a;hb=29313449f726f13ecc562cea9856645eade8e3e9;hp=08f0f2a3a34d4d5e3bf45216f5d824854894f2f1;hpb=cd390763d487c140570ced10ac0d955908072fc6;p=git.git diff --git a/t/t9600-cvsimport.sh b/t/t9600-cvsimport.sh index 08f0f2a3a..0b115a17a 100755 --- a/t/t9600-cvsimport.sh +++ b/t/t9600-cvsimport.sh @@ -3,24 +3,40 @@ test_description='git-cvsimport basic tests' . ./test-lib.sh -if ! ( type cvs && type cvsps ) >/dev/null 2>&1 -then - test_expect_success 'skipping cvsimport tests, cvs/cvsps not found' '' - test_done - exit -fi - CVSROOT=$(pwd)/cvsroot export CVSROOT # for clean cvsps cache HOME=$(pwd) export HOME +if ! type cvs >/dev/null 2>&1 +then + say 'skipping cvsimport tests, cvs not found' + test_done + exit +fi + +cvsps_version=`cvsps -h 2>&1 | sed -ne 's/cvsps version //p'` +case "$cvsps_version" in +2.1) + ;; +'') + say 'skipping cvsimport tests, cvsps not found' + test_done + exit + ;; +*) + say 'skipping cvsimport tests, cvsps too old' + test_done + exit + ;; +esac + test_expect_success 'setup cvsroot' 'cvs init' test_expect_success 'setup a cvs module' ' - mkdir $CVSROOT/module && + mkdir "$CVSROOT/module" && cvs co -d module-cvs module && cd module-cvs && cat <o_fortuna &&