]> sipb.mit.edu Git - ikiwiki.git/blobdiff - t/syntax.t
web commit by http://joey.kitenet.net/
[ikiwiki.git] / t / syntax.t
index 2462464ef26c3811e7e85a17068656082f25fe81..38c5a82c4e111f8c8d5a7baa95a9a50f6d07128d 100755 (executable)
@@ -1,19 +1,18 @@
 #!/usr/bin/perl
 use warnings;
 use strict;
-use Test;
+use Test::More;
 
-my @progs="ikiwiki.pl";
+my @progs="ikiwiki.in";
 my @libs="IkiWiki.pm";
-push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.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`;
 
 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 -T -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);
 }