blob: 7e0cfbd2d68e03efbd063db0987cd181c9786292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::More;
my @progs="ikiwiki.in";
my @libs="IkiWiki.pm";
# monotone and external skipped since they need a perl modules
push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v IkiWiki/Rcs/monotone.pm | grep -v IkiWiki/Plugin/external.pm`;
plan(tests => (@progs + @libs));
foreach my $file (@progs) {
ok(system("perl -T -c $file >/dev/null 2>&1") eq 0, $file);
}
foreach my $file (@libs) {
ok(system("perl -c $file >/dev/null 2>&1") eq 0, $file);
}
|