This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Correct three sub call comments in perly.y
[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
aa689395 9}
c537bcda 10
e018f8be
JH
11my $torture; # torture testing?
12
abd39864 13use TAP::Harness 3.13;
9a4933c3 14use strict;
68bb50b0 15use Config;
a5f75d66 16
c537bcda
NC
17$::do_nothing = $::do_nothing = 1;
18require './TEST';
19
abd39864
MS
20my $Verbose = 0;
21$Verbose++ while @ARGV && $ARGV[0] eq '-v' && shift;
a5f75d66 22
12558422 23if ($ARGV[0] && $ARGV[0] eq '-torture') {
e018f8be
JH
24 shift;
25 $torture = 1;
26}
27
60e23f2f
MS
28# Let tests know they're running in the perl core. Useful for modules
29# which live dual lives on CPAN.
30$ENV{PERL_CORE} = 1;
31
0ca04487 32#fudge DATA for now.
9a4933c3 33my %datahandle = qw(
0ca04487
VB
34 lib/bigint.t 1
35 lib/bigintpm.t 1
36 lib/bigfloat.t 1
37 lib/bigfloatpm.t 1
38 op/gv.t 1
39 lib/complex.t 1
40 lib/ph.t 1
41 lib/soundex.t 1
42 op/misc.t 1
43 op/runlevel.t 1
44 op/tie.t 1
45 op/lex_assign.t 1
0ca04487
VB
46 );
47
48foreach (keys %datahandle) {
49 unlink "$_.t";
50}
51
0279961e 52my (@tests, $re);
122a0375 53
40996b78
AT
54# [.VMS]TEST.COM calls harness with empty arguments, so clean-up @ARGV
55@ARGV = grep $_ && length( $_ ) => @ARGV;
56
9ae5a6c3
NC
57sub _extract_tests;
58sub _extract_tests {
59 # This can probably be done more tersely with a map, but I doubt that it
60 # would be as clear
61 my @results;
62 foreach (@_) {
63 my $ref = ref $_;
64 if ($ref) {
65 if ($ref eq 'ARRAY') {
66 push @results, _extract_tests @$_;
67 } elsif ($ref eq 'HASH') {
68 push @results, _extract_tests values %$_;
69 } else {
70 die "Unknown reference type $ref";
71 }
72 } else {
0ae187c2 73 push @results, glob $_;
9ae5a6c3
NC
74 }
75 }
76 @results;
77}
78
12558422 79if ($ARGV[0] && $ARGV[0]=~/^-re/) {
8a76aa1f
YO
80 if ($ARGV[0]!~/=/) {
81 shift;
82 $re=join "|",@ARGV;
83 @ARGV=();
84 } else {
85 (undef,$re)=split/=/,shift;
86 }
87}
88
0279961e 89my $jobs = $ENV{TEST_JOBS};
abd39864 90my ($rules, $state, $color);
cd1b270f
B
91if ($ENV{HARNESS_OPTIONS}) {
92 for my $opt ( split /:/, $ENV{HARNESS_OPTIONS} ) {
93 if ( $opt =~ /^j(\d*)$/ ) {
94 $jobs ||= $1 || 9;
95 }
cd1b270f 96 elsif ( $opt eq 'c' ) {
abd39864 97 $color = 1;
cd1b270f
B
98 }
99 else {
100 die "Unknown HARNESS_OPTIONS item: $opt\n";
101 }
102 }
103}
0279961e 104
7a315204 105if (@ARGV) {
0279961e 106 # If you want these run in speed order, just use prove
4efb34a6
NIS
107 if ($^O eq 'MSWin32') {
108 @tests = map(glob($_),@ARGV);
109 }
110 else {
111 @tests = @ARGV;
112 }
68bb50b0
NC
113 # This is a hack to force config_heavy.pl to be loaded, before the
114 # prep work for running a test changes directory.
115 1 if $Config{d_fork};
7a315204 116} else {
9ae5a6c3
NC
117 # Ideally we'd get somewhere close to Tux's Oslo rules
118 # my $rules = {
119 # par => [
120 # { seq => '../ext/DB_File/t/*' },
121 # { seq => '../ext/IO_Compress_Zlib/t/*' },
9ae5a6c3
NC
122 # { seq => '../lib/ExtUtils/t/*' },
123 # '*'
124 # ]
125 # };
126
ee901278 127 # but for now, run all directories in sequence.
9ae5a6c3 128
b695f709 129 unless (@tests) {
0279961e 130 my @seq = <base/*.t>;
9ae5a6c3 131
bb52f720 132 my @next = qw(comp run cmd io re opbasic op uni mro lib porting);
9ae5a6c3
NC
133 push @next, 'japh' if $torture;
134 push @next, 'win32' if $^O eq 'MSWin32';
7019aa11 135 push @next, 'benchmark' if $ENV{PERL_BENCHMARK};
ff5db609 136 push @next, 'bigmem' if $ENV{PERL_TEST_MEMORY};
0279961e
NC
137 # Hopefully TAP::Parser::Scheduler will support this syntax soon.
138 # my $next = { par => '{' . join (',', @next) . '}/*.t' };
139 my $next = { par => [
2f4cffa7 140 map { "$_/*.t" } @next
e6867818 141 ] };
0279961e
NC
142 @tests = _extract_tests ($next);
143
144 # This is a bit of a game, because we only want to sort these tests in
145 # speed order. base/*.t wants to run first, and ext,lib etc last and in
146 # MANIFEST order
147 if ($jobs) {
148 require App::Prove::State;
149 $state = App::Prove::State->new({ store => 'test_state' });
150 $state->apply_switch('slow', 'save');
151 # For some reason get_tests returns *all* the tests previously run,
152 # (in the right order), not simply the selection in @tests
153 # (in the right order). Not sure if this is a bug or a feature.
154 # Whatever, *we* are only interested in the ones that are in @tests
155 my %seen;
156 @seen{@tests} = ();
157 @tests = grep {exists $seen{$_} } $state->get_tests(0, @tests);
158 }
159 @tests = (@seq, @tests);
160 push @seq, $next;
9ae5a6c3
NC
161
162 my @last;
a3323f52
NC
163 push @last, sort { lc $a cmp lc $b }
164 _tests_from_manifest($Config{extensions}, $Config{known_extensions});
9ae5a6c3
NC
165 push @last, <x2p/*.t>;
166
226de479
NC
167 my %times;
168 if ($state) {
169 # Where known, collate the elapsed times by test name
170 foreach ($state->results->tests()) {
171 $times{$_->name} = $_->elapsed();
172 }
173 }
174
175 my %dir;
176 my %total_time;
177
178 for (@last) {
133fac12
MM
179 if ($^O eq 'MSWin32') {
180 s,\\,/,g; # canonicalize path
181 };
8f776eae
NC
182 # Treat every file matching lib/*.t as a "directory"
183 m!\A(\.\./lib/[^/]+\.t\z|.*[/])! or die "'$_'";
226de479
NC
184 push @{$dir{$1}}, $_;
185 $total_time{$1} += $times{$_} || 0;
186 }
187
0279961e 188 push @tests, @last;
9ae5a6c3 189
fc279e46
NC
190 # Generate T::H schedule rules that run the contents of each directory
191 # sequentially.
8f776eae 192 push @seq, { par => [ map { s!/$!/*!; { seq => $_ } } sort {
226de479
NC
193 # Directories, ordered by total time descending then name ascending
194 $total_time{$b} <=> $total_time{$a} || $a cmp $b
195 } keys %dir ] };
9ae5a6c3
NC
196
197 $rules = { seq => \@seq };
7a315204
JH
198 }
199}
22a65f1e
GS
200if ($^O eq 'MSWin32') {
201 s,\\,/,g for @tests;
202}
8a76aa1f
YO
203@tests=grep /$re/, @tests
204 if $re;
9ae5a6c3 205
4013a0e1
VP
206my %options;
207
208my $type = 'perl';
209
210# Load TAP::Parser now as otherwise it could be required in the short time span
211# in which the harness process chdirs into ext/Dist
212require TAP::Parser;
213
abd39864
MS
214my $h = TAP::Harness->new({
215 rules => $rules,
216 color => $color,
217 jobs => $jobs,
218 verbosity => $Verbose,
4013a0e1
VP
219 exec => sub {
220 my ($harness, $test) = @_;
221
222 my $options = $options{$test};
223 if (!defined $options) {
224 $options = $options{$test} = _scan_test($test, $type);
225 }
226
227 return [ split ' ', _cmd($options, $type) ];
228 },
abd39864 229});
a0f20b65
NC
230
231if ($state) {
e8fb11d7 232 $h->callback(
a0f20b65
NC
233 after_test => sub {
234 $state->observe_test(@_);
e8fb11d7 235 }
a0f20b65
NC
236 );
237 $h->callback(
238 after_runtests => sub {
239 $state->commit(@_);
240 }
241 );
9ae5a6c3 242}
a0f20b65
NC
243
244$h->callback(
245 parser_args => sub {
4013a0e1
VP
246 my ($args, $job) = @_;
247 my $test = $job->[0];
248 _before_fork($options{$test});
249 push @{ $args->{switches} }, "-I../../lib";
a0f20b65
NC
250 }
251 );
4013a0e1
VP
252
253$h->callback(
254 made_parser => sub {
255 my ($parser, $job) = @_;
256 my $test = $job->[0];
257 my $options = delete $options{$test};
258 _after_fork($options);
259 }
260 );
261
f483babb
DG
262my $agg = $h->runtests(@tests);
263exit $agg->has_errors ? 1 : 0;