Revert the /proc/self/auxv experiment for now.
[p5sagit/p5-mst-13.2.git] / t / lib / 1_compile.t
CommitLineData
7200bc44 1#!./perl
2
3BEGIN {
8338e367 4 chdir '..' if -d '../pod' && -d '../t';
7200bc44 5 @INC = 'lib';
6}
7
8use strict;
9use warnings;
cdd2acaa 10use Config;
7200bc44 11
cdd2acaa 12my %Core_Modules;
4d0ed6f7 13my %Test;
cdd2acaa 14
656b9f42 15unless (open(MANIFEST, "MANIFEST")) {
16 die "$0: failed to open 'MANIFEST': $!\n";
17}
18
19sub add_by_name {
20 $Core_Modules{$_[0]}++;
21}
22
23while (<MANIFEST>) {
4d0ed6f7 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 }
656b9f42 38}
39
40close(MANIFEST);
cdd2acaa 41
42# Delete stuff that can't be tested here.
43
656b9f42 44sub delete_by_name {
45 delete $Core_Modules{$_[0]};
46}
47
48sub has_extension {
49 $Config{extensions} =~ /\b$_[0]\b/i;
50}
51
52sub delete_unless_has_extension {
53 delete $Core_Modules{$_[0]} unless has_extension($_[0]);
cdd2acaa 54}
55
56foreach my $known_extension (split(' ', $Config{known_extensions})) {
656b9f42 57 delete_unless_has_extension($known_extension);
cdd2acaa 58}
59
60sub delete_by_prefix {
656b9f42 61 for my $match (grep { /^$_[0]/ } keys %Core_Modules) {
62 delete_by_name($match);
63 }
cdd2acaa 64}
65
656b9f42 66delete_by_name('CGI::Fast'); # won't load without FCGI
cdd2acaa 67
cdd2acaa 68delete_by_prefix('ExtUtils::MM_'); # ExtUtils::MakeMaker's domain
69
70delete_by_prefix('File::Spec::'); # File::Spec's domain
656b9f42 71add_by_name('File::Spec::Functions'); # put this back
cdd2acaa 72
04070b92 73delete_by_prefix('Attribute::Handlers');# we test this, and we have demos
74
656b9f42 75sub using_feature {
76 my $use = "use$_[0]";
77 exists $Config{$use} &&
78 defined $Config{$use} &&
79 $Config{$use} eq 'define';
80}
81
82unless (using_feature('threads') && has_extension('Thread')) {
83 delete_by_name('Thread');
290a1446 84 delete_by_prefix('Thread::');
eba8ff18 85}
cdd2acaa 86
a0cb3900 87unless (has_extension('NDBM_File')) {
88 delete_by_name('Memoize::NDBM_File');
89}
90
3de3f243 91if (ord('A') == 193) {
c8b7969b 92 delete_by_prefix('Net::') unless eval { require Convert::EBCDIC };
3de3f243 93}
94
04070b92 95# Delete all modules which have their own tests.
96# This makes this test a lot faster.
4d0ed6f7 97foreach my $mod (sort keys %Test) {
98 delete_by_name($mod);
99}
6b40b044 100foreach my $mod (<DATA>) {
101 chomp $mod;
0d0c1411 102 print "### $mod has a test but is in DATA of $0\n" if exists $Test{$mod};
6b40b044 103 delete_by_name($mod);
104}
105
cdd2acaa 106# Okay, this is the list.
107
108my @Core_Modules = sort keys %Core_Modules;
7200bc44 109
110print "1..".@Core_Modules."\n";
111
112my $test_num = 1;
cdd2acaa 113
7200bc44 114foreach my $module (@Core_Modules) {
17bcccd5 115 print "$module compile failed\nnot " unless compile_module($module);
7200bc44 116 print "ok $test_num\n";
117 $test_num++;
118}
119
656b9f42 120# We do this as a separate process else we'll blow the hell
121# out of our namespace.
7200bc44 122sub compile_module {
656b9f42 123 my ($module) = $_[0];
7200bc44 124
1189d1e4 125 my $out = scalar `$^X "-Ilib" t/lib/compmod.pl $module`;
126 print "# $out";
127 return $out =~ /^ok/;
7200bc44 128}
6b40b044 129
20e80008 130# Add here modules that have their own test scripts and therefore
131# need not be test-compiled by 1_compile.t.
6b40b044 132__DATA__
6b40b044 133B::ShowLex
79319589 134CGI::Apache
135CGI::Carp
136CGI::Cookie
137CGI::Form
6b40b044 138CGI::Pretty
0d0c1411 139CGI::Push
79319589 140CGI::Switch
6b40b044 141CGI::Util
20e80008 142Carp::Heavy
6ae1853a 143CPAN::Nox
6b40b044 144Exporter::Heavy
20e80008 145ExtUtils::Constant
146ExtUtils::MakeMaker
6b40b044 147Filter::Util::Call
6b40b044 148GDBM_File
0e6c72d5 149I18N::LangTags::List
6b40b044 150IO::Dir
151IO::File
152IO::Handle
153IO::Pipe
154IO::Poll
155IO::Seekable
156IO::Select
157IO::Socket
158IO::Socket::INET
159IO::Socket::UNIX
6b40b044 160Locale::Constants
161Locale::Country
162Locale::Currency
163Locale::Language
6b40b044 164MIME::QuotedPrint
165Math::BigFloat
0e6c72d5 166Math::BigInt::Calc
0e6c72d5 167Memoize::AnyDBM_File
168Memoize::Expire
169Memoize::ExpireFile
170Memoize::ExpireTest
171Memoize::NDBM_File
172Memoize::SDBM_File
173Memoize::Storable
6b40b044 174NDBM_File
6b40b044 175ODBM_File
6b40b044 176Pod::Checker
177Pod::Find
f56fdd80 178Pod::Html
fed96050 179Pod::LaTeX
f56fdd80 180Pod::Man
181Pod::ParseLink
fed96050 182Pod::ParseUtils
6b40b044 183Pod::Text
f56fdd80 184Pod::Text::Overstrike
185Pod::Text::Termcap
6b40b044 186Pod::Usage
187SDBM_File
188Safe
189Scalar::Util
6b40b044 190Sys::Syslog
0e6c72d5 191Test::More
6b40b044 192Test::ParseWords
6b40b044 193Text::Tabs
194Text::Wrap
195Thread
196Tie::Array
197Tie::Handle
198Tie::Hash
2857d2f7 199Time::tm
6b40b044 200UNIVERSAL
601f2d16 201attributes
6b40b044 202base
6b40b044 203ops
d99274ce 204warnings::register