blob: 1e6b047478a5e9bd2ba06774893f346d3204b2dd (
plain)
- #!/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);
- }
|