This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bring up ExtUtils::MakeMaker to 6.56 - no functional changes from 6.55_03
[perl5.git] / cpan / ExtUtils-MakeMaker / t / 00compile.t
CommitLineData
479d2113
MS
1#!/usr/bin/perl -w
2
3BEGIN {
b78fd716 4 unshift @INC, 't/lib';
479d2113
MS
5}
6chdir 't';
7
479d2113
MS
8use Test::More;
9
10my $Has_Test_Pod;
11BEGIN {
12 $Has_Test_Pod = eval 'use Test::Pod 0.95; 1';
13}
14
cb06ebec
DM
15chdir "..";
16my $manifest = "MANIFEST";
5bdf71cc 17open(my $manifest_fh, "<", $manifest) or die "Can't open $manifest: $!";
3d97da50 18my @modules = map { m{^lib/(\S+)}; $1 }
b78fd716
NC
19 grep { m{^lib/\S+\.pm} }
20 <$manifest_fh>;
8b19c1f8 21
dedf98bc 22chomp @modules;
5bdf71cc 23close $manifest_fh;
dedf98bc
MS
24
25chdir 'lib';
479d2113
MS
26plan tests => scalar @modules * 2;
27foreach my $file (@modules) {
a592ba15
RGS
28 # Make sure we look at the local files and do not reload them if
29 # they're already loaded. This avoids recompilation warnings.
30 local @INC = @INC;
31 unshift @INC, ".";
32 ok eval { require($file); 1 } or diag "require $file failed.\n$@";
479d2113
MS
33
34 SKIP: {
35 skip "Test::Pod not installed", 1 unless $Has_Test_Pod;
36 pod_file_ok($file);
37 }
479d2113 38}