From: Joey Hess Date: Fri, 27 Apr 2012 17:59:36 +0000 (-0400) Subject: avoid syntax checking cvs, since it needs File::Chdir, which X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b485dbd891a129a23961a51b9d08d766d3b13726;hp=e870ca6c04bb6cb2b3ba00ff5a88c060fa2fb69d;p=ikiwiki.git 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));