This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
$[ = 2 should not warn.
[perl5.git] / t / harness
CommitLineData
a5f75d66
AD
1#!./perl
2
3# We suppose that perl _mostly_ works at this moment, so may use
4# sophisticated testing.
5
aa689395 6BEGIN {
7 chdir 't' if -d 't';
122a0375 8 @INC = '../lib'; # pick up only this build's lib
ef712cf7 9 $ENV{PERL5LIB} = '../lib'; # so children will see it too
aa689395 10}
aa689395 11
e018f8be
JH
12my $torture; # torture testing?
13
a5f75d66
AD
14use Test::Harness;
15
ef712cf7 16$Test::Harness::switches = ""; # Too much noise otherwise
90ce63d5 17$Test::Harness::verbose = shift if @ARGV && $ARGV[0] eq '-v';
a5f75d66 18
12558422 19if ($ARGV[0] && $ARGV[0] eq '-torture') {
e018f8be
JH
20 shift;
21 $torture = 1;
22}
23
60e23f2f
MS
24# Let tests know they're running in the perl core. Useful for modules
25# which live dual lives on CPAN.
26$ENV{PERL_CORE} = 1;
27
0ca04487
VB
28#fudge DATA for now.
29%datahandle = qw(
30 lib/bigint.t 1
31 lib/bigintpm.t 1
32 lib/bigfloat.t 1
33 lib/bigfloatpm.t 1
34 op/gv.t 1
35 lib/complex.t 1
36 lib/ph.t 1
37 lib/soundex.t 1
38 op/misc.t 1
39 op/runlevel.t 1
40 op/tie.t 1
41 op/lex_assign.t 1
0ca04487
VB
42 );
43
44foreach (keys %datahandle) {
45 unlink "$_.t";
46}
47
122a0375
PK
48my @tests = ();
49
40996b78
AT
50# [.VMS]TEST.COM calls harness with empty arguments, so clean-up @ARGV
51@ARGV = grep $_ && length( $_ ) => @ARGV;
52
6234cb77
NC
53sub _populate_hash {
54 return map {$_, 1} split /\s+/, $_[0];
55}
56
12558422 57if ($ARGV[0] && $ARGV[0]=~/^-re/) {
8a76aa1f
YO
58 if ($ARGV[0]!~/=/) {
59 shift;
60 $re=join "|",@ARGV;
61 @ARGV=();
62 } else {
63 (undef,$re)=split/=/,shift;
64 }
65}
66
7a315204 67if (@ARGV) {
4efb34a6
NIS
68 if ($^O eq 'MSWin32') {
69 @tests = map(glob($_),@ARGV);
70 }
71 else {
72 @tests = @ARGV;
73 }
7a315204 74} else {
b695f709 75 unless (@tests) {
122a0375
PK
76 push @tests, <base/*.t>;
77 push @tests, <comp/*.t>;
78 push @tests, <cmd/*.t>;
79 push @tests, <run/*.t>;
80 push @tests, <io/*.t>;
81 push @tests, <op/*.t>;
37fca15e 82 push @tests, <uni/*.t>;
122a0375 83 push @tests, <lib/*.t>;
e018f8be 84 push @tests, <japh/*.t> if $torture;
bb27e7b6 85 push @tests, <win32/*.t> if $^O eq 'MSWin32';
6234cb77
NC
86 use Config;
87 my %skip;
88 {
89 my %extensions = _populate_hash $Config{'extensions'};
90 my %known_extensions = _populate_hash $Config{'known_extensions'};
91 foreach (keys %known_extensions) {
92 $skip{$_}++ unless $extensions{$_};
93 }
94 }
b695f709
JH
95 use File::Spec;
96 my $updir = File::Spec->updir;
122a0375 97 my $mani = File::Spec->catfile(File::Spec->updir, "MANIFEST");
b695f709
JH
98 if (open(MANI, $mani)) {
99 while (<MANI>) { # similar code in t/TEST
6234cb77
NC
100 if (m!^(ext/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
101 my ($test, $extension) = ($1, $2);
102 if (defined $extension) {
103 $extension =~ s!/t$!!;
104 # XXX Do I want to warn that I'm skipping these?
105 next if $skip{$extension};
106 }
107 push @tests, File::Spec->catfile($updir, $test);
b695f709 108 }
7a315204 109 }
35d88760 110 close MANI;
b695f709
JH
111 } else {
112 warn "$0: cannot open $mani: $!\n";
7a315204 113 }
b695f709 114 push @tests, <pod/*.t>;
5e52531c 115 push @tests, <x2p/*.t>;
7a315204
JH
116 }
117}
22a65f1e
GS
118if ($^O eq 'MSWin32') {
119 s,\\,/,g for @tests;
120}
8a76aa1f
YO
121@tests=grep /$re/, @tests
122 if $re;
a5f75d66 123Test::Harness::runtests @tests;
56eca212
GS
124exit(0) unless -e "../testcompile";
125
e4f0d88d
EP
126# %infinite = qw (
127# op/bop.t 1
128# lib/hostname.t 1
129# op/lex_assign.t 1
595ae481 130# lib/ph.t 1
e4f0d88d 131# );
56eca212
GS
132
133my $dhwrapper = <<'EOT';
134open DATA,"<".__FILE__;
135until (($_=<DATA>) =~ /^__END__/) {};
136EOT
52cebf5e
EP
137
138@tests = grep (!$infinite{$_}, @tests);
56eca212 139@tests = map {
ef712cf7 140 my $new = $_;
adac82c7 141 if ($datahandle{$_} && !( -f "$new.t") ) {
ef712cf7
EP
142 $new .= '.t';
143 local(*F, *T);
144 open(F,"<$_") or die "Can't open $_: $!";
145 open(T,">$new") or die "Can't open $new: $!";
146 print T $dhwrapper, <F>;
147 close F;
148 close T;
149 }
150 $new;
151 } @tests;
152
153print "The tests ", join(' ', keys(%infinite)),
154 " generate infinite loops! Skipping!\n";
155
595ae481 156$ENV{'HARNESS_COMPILE_TEST'} = 1;
9636a016 157$ENV{'PERLCC_TIMEOUT'} = 120 unless $ENV{'PERLCC_TIMEOUT'};
ef712cf7 158
595ae481 159Test::Harness::runtests @tests;
56eca212
GS
160foreach (keys %datahandle) {
161 unlink "$_.t";
52cebf5e 162}