From 52e06ad51e9f029bb5a560ea20ec49f5ab9e751e Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 25 Sep 2006 20:15:02 +0000 Subject: [PATCH] improve diagnostics --- t/syntax.t | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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); } -- 2.45.0