This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Avoid "uninitialized value" warnings during 'make test'.
[perl5.git] / t / lib / 1_compile.t
1 #!./perl
2
3 # Modules should have their own tests.  For historical reasons, some
4 # do not.  This does basic compile tests on modules that have no tests
5 # of their own.
6
7 BEGIN {
8     chdir 't';
9     @INC = '../lib';
10 }
11
12 use strict;
13 use warnings;
14 use File::Spec::Functions;
15
16 # Okay, this is the list.
17
18 my @Core_Modules = grep /\S/, <DATA>;
19 chomp @Core_Modules;
20
21 if (eval { require Socket }) {
22   # Two Net:: modules need the Convert::EBCDIC if in EBDCIC.
23   if (ord("A") != 193 || eval { require Convert::EBCDIC }) {
24       push @Core_Modules, qw(Net::Cmd Net::POP3);
25   }
26 }
27 if(eval { require B }) {
28   push @Core_Modules, qw(B::C B::CC B::Stackobj);
29 }
30
31 @Core_Modules = sort @Core_Modules;
32
33 print "1..".(1+@Core_Modules)."\n";
34
35 my $message
36   = "ok 1 - All modules should have tests # TODO Make Schwern Poorer\n";
37 if (@Core_Modules) {
38   print "not $message";
39 } else {
40   print $message;
41 }
42 print <<'EOREWARD';
43 # http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-04/msg01223.html
44 # 20010421230349.P2946@blackrider.blackstar.co.uk
45 EOREWARD
46
47 my $test_num = 2;
48
49 foreach my $module (@Core_Modules) {
50     my $todo = '';
51     $todo = "# TODO $module needs porting on $^O" if $module eq 'ByteLoader' && $^O eq 'VMS';
52     print "# $module compile failed\nnot " unless compile_module($module);
53     print "ok $test_num $todo\n";
54     $test_num++;
55 }
56
57 # We do this as a separate process else we'll blow the hell
58 # out of our namespace.
59 sub compile_module {
60     my ($module) = $_[0];
61
62     my $compmod = catfile(curdir(), 'lib', 'compmod.pl');
63     my $lib     = '-I' . catdir(updir(), 'lib');
64
65     my $out = scalar `$^X $lib $compmod $module`;
66     print "# $out";
67     return $out =~ /^ok/;
68 }
69
70 # These modules have no tests of their own.
71 # Keep up to date with
72 # http://www.pobox.com/~schwern/cgi-bin/perl-qa-wiki.cgi?UntestedModules
73 # and vice-versa.  The list should only shrink.
74 __DATA__
75 DynaLoader