X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/c22b9386314b63bb285bd514425fc640bcfff390..34b213235529300c8be19290cefb1e5a01e2da3a:/t/cvs.t?ds=inline diff --git a/t/cvs.t b/t/cvs.t index 9df62334d..c9caa94eb 100755 --- a/t/cvs.t +++ b/t/cvs.t @@ -6,9 +6,11 @@ BEGIN { $dir="/tmp/ikiwiki-test-cvs.$$"; my $cvs=`which cvs`; chomp $cvs; - if (! -x $cvs || ! mkdir($dir)) { + my $cvsps=`which cvsps`; + chomp $cvsps; + if (! -x $cvs || ! -x $cvsps || ! mkdir($dir)) { eval q{ - use Test::More skip_all => "cvs not available or could not make test dir" + use Test::More skip_all => "cvs or cvsps not available or could not make test dir" } } }