improve diagnostics
parent
eeae24f6c7
commit
52e06ad51e
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue