This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix core dump on IO::Seekable::setpos($fh, undef)
[perl5.git] / t / TEST
1 #!./perl
2
3 # Last change: Fri Jan 10 09:57:03 WET 1997
4
5 # This is written in a peculiar style, since we're trying to avoid
6 # most of the constructs we'll be testing for.
7
8 $| = 1;
9
10 if ($#ARGV >= 0 && $ARGV[0] eq '-v') {
11     $verbose = 1;
12     shift;
13 }
14
15 chdir 't' if -f 't/TEST';
16
17 die "You need to run \"make test\" first to set things up.\n"
18   unless -e 'perl' or -e 'perl.exe';
19
20 $ENV{EMXSHELL} = 'sh';        # For OS/2
21
22 if ($#ARGV == -1) {
23     @ARGV = split(/[ \n]/,
24       `echo base/*.t comp/*.t cmd/*.t io/*.t; echo op/*.t pragma/*.t lib/*.t`);
25 }
26
27 if ($^O eq 'os2' || $^O eq 'qnx') {
28     $sharpbang = 0;
29 }
30 else {
31     open(CONFIG, "../config.sh");
32     while (<CONFIG>) {
33         if (/sharpbang='(.*)'/) {
34             $sharpbang = ($1 eq '#!');
35             last;
36         }
37     }
38     close(CONFIG);
39 }
40
41 $bad = 0;
42 $good = 0;
43 $total = @ARGV;
44 $files  = 0;
45 $totmax = 0;
46 while ($test = shift) {
47     if ($test =~ /^$/) {
48         next;
49     }
50     $te = $test;
51     chop($te);
52     print "$te" . '.' x (18 - length($te));
53     if ($sharpbang) {
54         open(RESULTS,"./$test |") || (print "can't run.\n");
55     } else {
56         open(SCRIPT,"$test") || die "Can't run $test.\n";
57         $_ = <SCRIPT>;
58         close(SCRIPT);
59         if (/#!..perl(.*)/) {
60             $switch = $1;
61             if ($^O eq 'VMS') {
62                 # Must protect uppercase switches with "" on command line
63                 $switch =~ s/-([A-Z]\S*)/"-$1"/g;
64             }
65         } else {
66             $switch = '';
67         }
68         open(RESULTS,"./perl$switch $test |") || (print "can't run.\n");
69     }
70     $ok = 0;
71     $next = 0;
72     while (<RESULTS>) {
73         if ($verbose) {
74             print $_;
75         }
76         unless (/^#/) {
77             if (/^1\.\.([0-9]+)/) {
78                 $max = $1;
79                 $totmax += $max;
80                 $files += 1;
81                 $next = 1;
82                 $ok = 1;
83             } else {
84                 $next = $1, $ok = 0, last if /^not ok ([0-9]*)/;
85                 if (/^ok (.*)/ && $1 == $next) {
86                     $next = $next + 1;
87                 } else {
88                     $ok = 0;
89                 }
90             }
91         }
92     }
93     $next = $next - 1;
94     if ($ok && $next == $max) {
95         if ($max) {
96             print "ok\n";
97             $good = $good + 1;
98         } else {
99             print "skipping test on this platform\n";
100             $files -= 1;
101         }
102     } else {
103         $next += 1;
104         print "FAILED on test $next\n";
105         $bad = $bad + 1;
106         $_ = $test;
107         if (/^base/) {
108             die "Failed a basic test--cannot continue.\n";
109         }
110     }
111 }
112
113 if ($bad == 0) {
114     if ($ok) {
115         print "All tests successful.\n";
116     } else {
117         die "FAILED--no tests were run for some reason.\n";
118     }
119 } else {
120     $pct = sprintf("%.2f", $good / $total * 100);
121     if ($bad == 1) {
122         warn "Failed 1 test script out of $total, $pct% okay.\n";
123     } else {
124         warn "Failed $bad test scripts out of $total, $pct% okay.\n";
125     }
126        warn <<'SHRDLU';
127    ### Since not all tests were successful, you may want to run some
128    ### of them individually and examine any diagnostic messages they
129    ### produce.  See the INSTALL document's section on "make test".
130 SHRDLU
131        warn <<'SHRDLU' if $good / $total > 0.8;
132    ###
133    ### Since most tests were successful, you have a good chance to
134    ### get information with better granularity by running
135    ###     ./perl harness
136    ### in directory ./t.
137 SHRDLU
138 }
139 ($user,$sys,$cuser,$csys) = times;
140 print sprintf("u=%g  s=%g  cu=%g  cs=%g  scripts=%d  tests=%d\n",
141     $user,$sys,$cuser,$csys,$files,$totmax);
142 exit ($bad != 0);