X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/e5ae4bbcf70dd5d642bbe85e88585c110e523670..ec6ff98d94fbb8cf11a0c339634aeb78bb0420cc:/t/syntax.t?ds=sidebyside diff --git a/t/syntax.t b/t/syntax.t index 1e6b04747..38c5a82c4 100755 --- a/t/syntax.t +++ b/t/syntax.t @@ -1,19 +1,18 @@ #!/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 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); }