e745db8a34d454d82d52bb5369f8d8aba654e7af
[p5sagit/p5-mst-13.2.git] / t / harness
1 #!./perl
2
3 # We suppose that perl _mostly_ works at this moment, so may use
4 # sophisticated testing.
5
6 BEGIN {
7     chdir 't' if -d 't';
8     @INC = '../lib';              # pick up only this build's lib
9     $ENV{PERL5LIB} = '../lib';    # so children will see it too
10 }
11
12 my $torture; # torture testing?
13
14 use Test::Harness;
15
16 $Test::Harness::switches = "";    # Too much noise otherwise
17 $Test::Harness::verbose = shift if @ARGV && $ARGV[0] eq '-v';
18
19 if ($ARGV[0] eq '-torture') {
20     shift;
21     $torture = 1;
22 }
23
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
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
42                 );
43
44 foreach (keys %datahandle) {
45      unlink "$_.t";
46 }
47
48 my @tests = ();
49
50 # [.VMS]TEST.COM calls harness with empty arguments, so clean-up @ARGV
51 @ARGV = grep $_ && length( $_ ) => @ARGV;
52
53 if (@ARGV) {
54     if ($^O eq 'MSWin32') {
55         @tests = map(glob($_),@ARGV);
56     }
57     else {
58         @tests = @ARGV;
59     }
60 } else {
61     unless (@tests) {
62         push @tests, <base/*.t>;
63         push @tests, <comp/*.t>;
64         push @tests, <cmd/*.t>;
65         push @tests, <run/*.t>;
66         push @tests, <io/*.t>;
67         push @tests, <op/*.t>;
68         push @tests, <uni/*.t>;
69         push @tests, <lib/*.t>;
70         push @tests, <japh/*.t> if $torture;
71         push @tests, <win32/*.t> if $^O eq 'MSWin32';
72         use File::Spec;
73         my $updir = File::Spec->updir;
74         my $mani  = File::Spec->catfile(File::Spec->updir, "MANIFEST");
75         if (open(MANI, $mani)) {
76             while (<MANI>) { # similar code in t/TEST
77             if (m!^(ext/\S+/?(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
78                     push @tests, File::Spec->catfile($updir, $1);
79                 }
80             }
81             close MANI;
82         } else {
83             warn "$0: cannot open $mani: $!\n";
84         }
85         push @tests, <pod/*.t>;
86         push @tests, <x2p/*.t>;
87     }
88 }
89 if ($^O eq 'MSWin32') {
90     s,\\,/,g for @tests;
91 }
92 Test::Harness::runtests @tests;
93 exit(0) unless -e "../testcompile";
94
95 # %infinite =  qw (
96 #        op/bop.t       1
97 #        lib/hostname.t 1
98 #        op/lex_assign.t        1
99 #        lib/ph.t       1
100 #        );
101
102 my $dhwrapper = <<'EOT';
103 open DATA,"<".__FILE__;
104 until (($_=<DATA>) =~ /^__END__/) {};
105 EOT
106
107 @tests = grep (!$infinite{$_}, @tests);
108 @tests = map {
109          my $new = $_;
110          if ($datahandle{$_} && !( -f "$new.t") ) {
111              $new .= '.t';
112              local(*F, *T);
113              open(F,"<$_") or die "Can't open $_: $!";
114              open(T,">$new") or die "Can't open $new: $!";
115              print T $dhwrapper, <F>;
116              close F;
117              close T;
118          }
119          $new;
120          } @tests;
121
122 print "The tests ", join(' ', keys(%infinite)),
123     " generate infinite loops! Skipping!\n";
124
125 $ENV{'HARNESS_COMPILE_TEST'} = 1;
126 $ENV{'PERLCC_TIMEOUT'} = 120 unless $ENV{'PERLCC_TIMEOUT'};
127
128 Test::Harness::runtests @tests;
129 foreach (keys %datahandle) {
130      unlink "$_.t";
131 }