blob: 1e6b047478a5e9bd2ba06774893f346d3204b2dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/perl
use warnings;
use strict;
use Test;
my @progs="ikiwiki";
my @libs="IkiWiki.pm";
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);
}
foreach my $file (@libs) {
print "# Testing $file\n";
ok(system("perl -c $file >/dev/null 2>&1"), 0);
}
|