3 # Last change: Fri Jan 10 09:57:03 WET 1997
5 # This is written in a peculiar style, since we're trying to avoid
6 # most of the constructs we'll be testing for.
10 if ($#ARGV >= 0 && $ARGV[0] eq '-v') {
15 chdir 't' if -f 't/TEST';
17 die "You need to run \"make test\" first to set things up.\n"
18 unless -e 'perl' or -e 'perl.exe';
20 #$ENV{PERL_DESTRUCT_LEVEL} = '2';
21 $ENV{EMXSHELL} = 'sh'; # For OS/2
24 @ARGV = split(/[ \n]/,
25 `echo base/*.t comp/*.t cmd/*.t io/*.t; echo op/*.t pragma/*.t lib/*.t`);
28 if ($^O eq 'os2' || $^O eq 'qnx') {
32 open(CONFIG, "../config.sh");
34 if (/sharpbang='(.*)'/) {
35 $sharpbang = ($1 eq '#!');
42 %infinite = ( 'comp/require.t', 1, 'op/bop.t', 1, 'lib/hostname.t', 1 );
44 _testprogs('perl', @ARGV);
45 _testprogs('compile', @ARGV) if (-e "../testcompile");
52 print <<'EOT' if ($type eq 'compile');
53 --------------------------------------------------------------------------------
55 --------------------------------------------------------------------------------
58 $ENV{PERLCC_TIMEOUT} = 120
59 if ($type eq 'compile' && !$ENV{PERLCC_TIMEOUT});
66 while ($test = shift @tests) {
68 if ( $infinite{$test} && $type eq 'compile' ) {
69 print STDERR "$test creates infinite loop! Skipping.\n";
77 print "$te" . '.' x (18 - length($te));
79 -x $test || (print "isn't executable.\n");
81 if ($type eq 'perl') {
82 open(RESULTS, "./$test |") || (print "can't run.\n"); }
84 open(RESULTS, "./perl -I../lib ../utils/perlcc ./$test -run -verbose dcf -log ../compilelog |") or print "can't compile.\n";
88 open(SCRIPT,"$test") or die "Can't run $test.\n";
94 # Must protect uppercase switches with "" on command line
95 $switch =~ s/-([A-Z]\S*)/"-$1"/g;
102 if ($type eq 'perl') {
103 open(RESULTS,"./perl$switch -I../lib -Mutf8 $test |") || (print "can't run.\n");
106 open(RESULTS, "./perl -I../lib ../utils/perlcc -Mutf8 ./$test -run -verbose dcf -log ../compilelog |") or print "can't compile.\n";
116 if (/^1\.\.([0-9]+)/) {
124 $next = $1, $ok = 0, last if /^not ok ([0-9]*)/;
125 if (/^ok (\d+)(\s*#.*)?$/ && $1 == $next) {
136 if ($ok && $next == $max) {
142 print "skipping test on this platform\n";
148 print "FAILED at test $next\n";
152 die "Failed a basic test--cannot continue.\n";
159 print "All tests successful.\n";
160 # XXX add mention of 'perlbug -ok' ?
163 die "FAILED--no tests were run for some reason.\n";
167 $pct = sprintf("%.2f", $good / $total * 100);
169 warn "Failed 1 test script out of $total, $pct% okay.\n";
172 warn "Failed $bad test scripts out of $total, $pct% okay.\n";
175 ### Since not all tests were successful, you may want to run some
176 ### of them individually and examine any diagnostic messages they
177 ### produce. See the INSTALL document's section on "make test".
178 ### If you are testing the compiler, then ignore this message
181 ### in the directory ./t.
183 warn <<'SHRDLU' if $good / $total > 0.8;
185 ### Since most tests were successful, you have a good chance to
186 ### get information with better granularity by running
188 ### in directory ./t.
191 ($user,$sys,$cuser,$csys) = times;
192 print sprintf("u=%g s=%g cu=%g cs=%g scripts=%d tests=%d\n",
193 $user,$sys,$cuser,$csys,$files,$totmax);