From: Joey Hess <joey@kitenet.net>
Date: Fri, 27 Apr 2012 17:59:36 +0000 (-0400)
Subject: avoid syntax checking cvs, since it needs File::Chdir, which
X-Git-Tag: 3.20120516~14
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/b485dbd891a129a23961a51b9d08d766d3b13726

avoid syntax checking cvs, since it needs File::Chdir, which
is not a build dep
---

diff --git a/t/syntax.t b/t/syntax.t
index a3760a2b2..b7c6efd58 100755
--- a/t/syntax.t
+++ b/t/syntax.t
@@ -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));