This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix warning.
[perl5.git] / lib / ExtUtils / t / 00compile.t
CommitLineData
479d2113
MS
1#!/usr/bin/perl -w
2
3BEGIN {
4 if( $ENV{PERL_CORE} ) {
5 @INC = ('../lib', 'lib');
6 }
7 else {
8 unshift @INC, 't/lib';
9 }
10}
11chdir 't';
12
13use File::Find;
14use File::Spec;
15use Test::More;
16
17my $Has_Test_Pod;
18BEGIN {
19 $Has_Test_Pod = eval 'use Test::Pod 0.95; 1';
20}
21
dedf98bc
MS
22chdir File::Spec->updir;
23my $manifest = File::Spec->catfile('MANIFEST');
24open(MANIFEST, $manifest) or die "Can't open $manifest: $!";
25my @modules = map { m{^lib/(\S+)}; $1 }
6b09c160
YST
26 grep { m{^lib/ExtUtils/\S*\.pm} }
27 grep { !m{/t/} } <MANIFEST>;
dedf98bc
MS
28chomp @modules;
29close MANIFEST;
30
31chdir 'lib';
479d2113
MS
32plan tests => scalar @modules * 2;
33foreach my $file (@modules) {
431b0fc4 34 # 5.8.0 has a bug about require alone in an eval. Thus the extra
dedf98bc 35 # statement.
1df8d179 36 eval { require($file); 1 };
479d2113
MS
37 is( $@, '', "require $file" );
38
39 SKIP: {
40 skip "Test::Pod not installed", 1 unless $Has_Test_Pod;
41 pod_file_ok($file);
42 }
479d2113 43}