aboutsummaryrefslogtreecommitdiff
path: root/t/syntax.t
diff options
context:
space:
mode:
Diffstat (limited to 't/syntax.t')
-rwxr-xr-xt/syntax.t8
1 files 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);
}