This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate mainline
[perl5.git] / t / lib / 1_compile.t
1 #!./perl
2
3 BEGIN {
4     chdir '..' if -d '../pod' && -d '../t';
5     @INC = 'lib';
6 }
7
8 use strict;
9 use warnings;
10 use Config;
11
12 my %Core_Modules;
13 my %Test;
14
15 unless (open(MANIFEST, "MANIFEST")) {
16     die "$0: failed to open 'MANIFEST': $!\n";
17 }
18
19 sub add_by_name {
20     $Core_Modules{$_[0]}++;
21 }
22
23 while (<MANIFEST>) {
24     if (m!^(lib)/(\S+?)\.pm\s!) {
25         # Collecting modules names from under ext/ would be
26         # rather painful since the mapping from filenames
27         # to module names is not 100%.
28         my ($dir, $module) = ($1, $2);
29         $module =~ s!/!::!g;
30         add_by_name($module);
31     } elsif (m!^(lib|ext)/(\S+?)(?:\.t|/test.pl)\s!) {
32         my ($dir, $test) = ($1, $2);
33         $test =~ s!(\w+)/\1$!$1! if $dir eq 'ext';
34         $test =~ s!/t/[^/]+$!!;
35         $test =~ s!/!::!g;
36         $Test{$test}++;
37     }
38 }
39
40 close(MANIFEST);
41
42 # Delete stuff that can't be tested here.
43
44 sub delete_by_name {
45     delete $Core_Modules{$_[0]};
46 }
47
48 sub has_extension {
49     $Config{extensions} =~ /\b$_[0]\b/i;
50 }
51
52 sub delete_unless_has_extension {
53     delete $Core_Modules{$_[0]} unless has_extension($_[0]);
54 }
55
56 foreach my $known_extension (split(' ', $Config{known_extensions})) {
57     delete_unless_has_extension($known_extension);
58 }
59
60 sub delete_by_prefix {
61     for my $match (grep { /^$_[0]/ } keys %Core_Modules) {
62         delete_by_name($match);
63     }
64 }
65
66 delete_by_name('CGI::Fast');            # won't load without FCGI
67
68 delete_by_name('Devel::DProf');         # needs to be run as -d:DProf
69
70 delete_by_prefix('ExtUtils::MM_');      # ExtUtils::MakeMaker's domain
71
72 delete_by_prefix('File::Spec::');       # File::Spec's domain
73 add_by_name('File::Spec::Functions');   # put this back
74
75 delete_by_prefix('Attribute::Handlers');# we test this, and we have demos
76
77 sub using_feature {
78     my $use = "use$_[0]";
79     exists $Config{$use} &&
80         defined $Config{$use} &&
81         $Config{$use} eq 'define';
82 }
83
84 unless (using_feature('threads') && has_extension('Thread')) {
85     delete_by_name('Thread');
86     delete_by_prefix('Thread::');
87 }
88
89 unless (has_extension('NDBM_File')) {
90     delete_by_name('Memoize::NDBM_File');
91 }
92
93 delete_by_prefix('unicode::');
94
95 # Delete all modules which have their own tests.
96 # This makes this test a lot faster.
97 foreach my $mod (sort keys %Test) {
98     delete_by_name($mod);
99 }
100 foreach my $mod (<DATA>) {
101     chomp $mod;
102     print "### $mod has a test but is in DATA of $0\n" if exists $Test{$mod};
103     delete_by_name($mod);
104 }
105
106 # Okay, this is the list.
107
108 my @Core_Modules = sort keys %Core_Modules;
109
110 print "1..".@Core_Modules."\n";
111
112 my $test_num = 1;
113
114 foreach my $module (@Core_Modules) {
115     print "$module compile failed\nnot " unless compile_module($module);
116     print "ok $test_num\n";
117     $test_num++;
118 }
119
120 # We do this as a separate process else we'll blow the hell
121 # out of our namespace.
122 sub compile_module {
123     my ($module) = $_[0];
124     
125     my $out = scalar `$^X "-Ilib" t/lib/compmod.pl $module`;
126     print "# $out";
127     return $out =~ /^ok/;
128 }
129
130 # Add here modules that have their own test scripts and therefore
131 # need not be test-compiled by 1_compile.t.
132 __DATA__
133 B::ShowLex
134 CGI::Apache
135 CGI::Carp
136 CGI::Cookie
137 CGI::Form
138 CGI::Pretty
139 CGI::Push
140 CGI::Switch
141 CGI::Util
142 Carp::Heavy
143 Devel::DProf
144 Dumpvalue
145 Exporter::Heavy
146 ExtUtils::Constant
147 ExtUtils::MakeMaker
148 Filter::Util::Call
149 GDBM_File
150 I18N::LangTags::List
151 IO::Dir
152 IO::File
153 IO::Handle
154 IO::Pipe
155 IO::Poll
156 IO::Seekable
157 IO::Select
158 IO::Socket
159 IO::Socket::INET
160 IO::Socket::UNIX
161 Locale::Constants
162 Locale::Country
163 Locale::Currency
164 Locale::Language
165 MIME::QuotedPrint
166 Math::BigFloat
167 Math::BigInt::Calc
168 Memoize::AnyDBM_File
169 Memoize::Expire
170 Memoize::ExpireFile
171 Memoize::ExpireTest
172 Memoize::NDBM_File
173 Memoize::SDBM_File
174 Memoize::Storable
175 NDBM_File
176 ODBM_File
177 Pod::Checker
178 Pod::Find
179 Pod::Text
180 Pod::Usage
181 SDBM_File
182 Safe
183 Scalar::Util
184 Sys::Syslog
185 Test::More
186 Test::ParseWords
187 Text::Tabs
188 Text::Wrap
189 Thread
190 Tie::Array
191 Tie::Handle
192 Tie::Hash
193 Tie::Scalar
194 Time::tm
195 UNIVERSAL
196 attributes
197 base
198 bytes
199 ops