From: joey Date: Mon, 25 Sep 2006 20:15:02 +0000 (+0000) Subject: improve diagnostics X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/52e06ad51e9f029bb5a560ea20ec49f5ab9e751e improve diagnostics --- diff --git a/t/syntax.t b/t/syntax.t index 2462464ef..cbbdee62f 100755 --- a/t/syntax.t +++ b/t/syntax.t @@ -1,7 +1,7 @@ #!/usr/bin/perl use warnings; use strict; -use Test; +use Test::More; my @progs="ikiwiki.pl"; my @libs="IkiWiki.pm"; @@ -10,10 +10,8 @@ push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.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); }