blob: 2462464ef26c3811e7e85a17068656082f25fe81 (
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.pl";
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);
}
|