aboutsummaryrefslogtreecommitdiff
path: root/t/syntax.t
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-07 17:06:42 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-09-07 17:06:42 +0000
commit2de411ac865f57fc7596f9d50d083e0bc38be334 (patch)
tree8a85b0cc0f30f7852aa2cb83f19b265331686f48 /t/syntax.t
parentc9904c9e0e6baef11bd7aabf358c3d28823e5acf (diff)
downloadikiwiki-2de411ac865f57fc7596f9d50d083e0bc38be334.tar
ikiwiki-2de411ac865f57fc7596f9d50d083e0bc38be334.tar.gz
* Exclude external plugin from syntax check since it uses a module that is
not in the build depends. Closes: #441171
Diffstat (limited to 't/syntax.t')
-rwxr-xr-xt/syntax.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/syntax.t b/t/syntax.t
index 38c5a82c4..7e0cfbd2d 100755
--- a/t/syntax.t
+++ b/t/syntax.t
@@ -5,8 +5,8 @@ use Test::More;
my @progs="ikiwiki.in";
my @libs="IkiWiki.pm";
-# monotone skipped since it needs a perl module
-push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v IkiWiki/Rcs/monotone.pm`;
+# monotone and external skipped since they need a perl modules
+push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v IkiWiki/Rcs/monotone.pm | grep -v IkiWiki/Plugin/external.pm`;
plan(tests => (@progs + @libs));