]> sipb.mit.edu Git - ikiwiki.git/blobdiff - t/syntax.t
review
[ikiwiki.git] / t / syntax.t
index 1e6b047478a5e9bd2ba06774893f346d3204b2dd..a3760a2b2aa956b48bc1764dbff141335b0247ff 100755 (executable)
@@ -1,19 +1,19 @@
 #!/usr/bin/perl
 use warnings;
 use strict;
-use Test;
+use Test::More;
 
-my @progs="ikiwiki";
+my @progs="ikiwiki.in";
 my @libs="IkiWiki.pm";
-push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.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`;
+push @libs, 'IkiWiki/Plugin/skeleton.pm.example';
 
 plan(tests => (@progs + @libs));
 
 foreach my $file (@progs) {
-        print "# Testing $file\n";
-        ok(system("perl -T -c $file >/dev/null 2>&1"), 0);
+        ok(system("perl -c $file >/dev/null 2>&1") eq 0, $file);
 }
 foreach my $file (@libs) {
-        print "# Testing $file\n";
-        ok(system("perl -c $file >/dev/null 2>&1"), 0);
+        ok(system("perl -c $file >/dev/null 2>&1") eq 0, $file);
 }