avoid syntax checking cvs, since it needs File::Chdir, which

is not a build dep
master
Joey Hess 2012-04-27 13:59:36 -04:00
parent e870ca6c04
commit b485dbd891
1 changed files with 3 additions and 2 deletions

View File

@ -5,8 +5,9 @@ use Test::More;
my @progs="ikiwiki.in";
my @libs="IkiWiki.pm";
# monotone, external, amazon_s3 skipped since they need perl modules
push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v monotone.pm | grep -v external.pm | grep -v amazon_s3.pm | grep -v po.pm`;
# monotone, external, amazon_s3, po, and cvs
# skipped since they need perl modules
push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v monotone.pm | grep -v external.pm | grep -v amazon_s3.pm | grep -v po.pm | grep -v cvs.pm`;
push @libs, 'IkiWiki/Plugin/skeleton.pm.example';
plan(tests => (@progs + @libs));