1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#!./perl
# We suppose that perl _mostly_ works at this moment, so may use
# sophisticated testing.
BEGIN {
chdir 't' if -d 't';
@INC = '../lib'; # pick up only this build's lib
$ENV{PERL5LIB} = '../lib'; # so children will see it too
}
my $torture; # torture testing?
use Test::Harness;
$Test::Harness::switches = ""; # Too much noise otherwise
$Test::Harness::verbose = shift if @ARGV && $ARGV[0] eq '-v';
if ($ARGV[0] && $ARGV[0] eq '-torture') {
shift;
$torture = 1;
}
# Let tests know they're running in the perl core. Useful for modules
# which live dual lives on CPAN.
$ENV{PERL_CORE} = 1;
#fudge DATA for now.
%datahandle = qw(
lib/bigint.t 1
lib/bigintpm.t 1
lib/bigfloat.t 1
lib/bigfloatpm.t 1
op/gv.t 1
lib/complex.t 1
lib/ph.t 1
lib/soundex.t 1
op/misc.t 1
op/runlevel.t 1
op/tie.t 1
op/lex_assign.t 1
);
foreach (keys %datahandle) {
unlink "$_.t";
}
my @tests = ();
# [.VMS]TEST.COM calls harness with empty arguments, so clean-up @ARGV
@ARGV = grep $_ && length( $_ ) => @ARGV;
sub _populate_hash {
return map {$_, 1} split /\s+/, $_[0];
}
if ($ARGV[0] && $ARGV[0]=~/^-re/) {
if ($ARGV[0]!~/=/) {
shift;
$re=join "|",@ARGV;
@ARGV=();
} else {
(undef,$re)=split/=/,shift;
}
}
if (@ARGV) {
if ($^O eq 'MSWin32') {
@tests = map(glob($_),@ARGV);
}
else {
@tests = @ARGV;
}
} else {
unless (@tests) {
push @tests, <base/*.t>;
push @tests, <comp/*.t>;
push @tests, <cmd/*.t>;
push @tests, <run/*.t>;
push @tests, <io/*.t>;
push @tests, <op/*.t>;
push @tests, <uni/*.t>;
push @tests, <lib/*.t>;
push @tests, <japh/*.t> if $torture;
push @tests, <win32/*.t> if $^O eq 'MSWin32';
use Config;
my %skip;
{
my %extensions = _populate_hash $Config{'extensions'};
my %known_extensions = _populate_hash $Config{'known_extensions'};
foreach (keys %known_extensions) {
$skip{$_}++ unless $extensions{$_};
}
}
use File::Spec;
my $updir = File::Spec->updir;
my $mani = File::Spec->catfile(File::Spec->updir, "MANIFEST");
if (open(MANI, $mani)) {
my @manitests = ();
my $ext_pat = $^O eq 'MSWin32' ? '(?:win32/)?ext' : 'ext';
while (<MANI>) { # similar code in t/TEST
if (m!^($ext_pat/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
my ($test, $extension) = ($1, $2);
if (defined $extension) {
$extension =~ s!/t$!!;
# XXX Do I want to warn that I'm skipping these?
next if $skip{$extension};
}
push @manitests, File::Spec->catfile($updir, $test);
}
}
close MANI;
# Sort the list of test files read from MANIFEST into a sensible
# order instead of using the order in which they are listed there
push @tests, sort { lc $a cmp lc $b } @manitests;
} else {
warn "$0: cannot open $mani: $!\n";
}
push @tests, <pod/*.t>;
push @tests, <x2p/*.t>;
}
}
if ($^O eq 'MSWin32') {
s,\\,/,g for @tests;
}
@tests=grep /$re/, @tests
if $re;
Test::Harness::runtests @tests;
exit(0);
|