projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b8673d
)
skip if cvsps is not available
author
Joey Hess
<joey@gnu.kitenet.net>
Thu, 10 Sep 2009 20:49:54 +0000
(16:49 -0400)
committer
Joey Hess
<joey@gnu.kitenet.net>
Thu, 10 Sep 2009 20:49:54 +0000
(16:49 -0400)
t/cvs.t
patch
|
blob
|
history
diff --git
a/t/cvs.t
b/t/cvs.t
index 9df62334da86fba1aa479435e07497d8752d7a2a..c9caa94eb308041e0b78ff4d9eddfe86cb331f65 100755
(executable)
--- 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"
}
}
}