X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fharness;h=8c8ffaa36da4cfe6c137de3ddc7cedd1eb249540;hb=1ccdb7301362000755034d5e6a7e73f566973104;hp=e3e02f5cedbd947064cce7f744e5e39aceb3b8c7;hpb=8a76aa1f201f195cea47d9c3db2cada8aeafe866;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/harness b/t/harness index e3e02f5..8c8ffaa 100644 --- a/t/harness +++ b/t/harness @@ -16,7 +16,7 @@ use Test::Harness; $Test::Harness::switches = ""; # Too much noise otherwise $Test::Harness::verbose = shift if @ARGV && $ARGV[0] eq '-v'; -if ($ARGV[0] eq '-torture') { +if ($ARGV[0] && $ARGV[0] eq '-torture') { shift; $torture = 1; } @@ -54,7 +54,7 @@ sub _populate_hash { return map {$_, 1} split /\s+/, $_[0]; } -if ($ARGV[0]=~/^-re/) { +if ($ARGV[0] && $ARGV[0]=~/^-re/) { if ($ARGV[0]!~/=/) { shift; $re=join "|",@ARGV; @@ -96,18 +96,23 @@ if (@ARGV) { 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 () { # similar code in t/TEST - if (m!^(ext/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) { + 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 @tests, File::Spec->catfile($updir, $test); + 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"; } @@ -121,42 +126,4 @@ if ($^O eq 'MSWin32') { @tests=grep /$re/, @tests if $re; Test::Harness::runtests @tests; -exit(0) unless -e "../testcompile"; - -# %infinite = qw ( -# op/bop.t 1 -# lib/hostname.t 1 -# op/lex_assign.t 1 -# lib/ph.t 1 -# ); - -my $dhwrapper = <<'EOT'; -open DATA,"<".__FILE__; -until (($_=) =~ /^__END__/) {}; -EOT - -@tests = grep (!$infinite{$_}, @tests); -@tests = map { - my $new = $_; - if ($datahandle{$_} && !( -f "$new.t") ) { - $new .= '.t'; - local(*F, *T); - open(F,"<$_") or die "Can't open $_: $!"; - open(T,">$new") or die "Can't open $new: $!"; - print T $dhwrapper, ; - close F; - close T; - } - $new; - } @tests; - -print "The tests ", join(' ', keys(%infinite)), - " generate infinite loops! Skipping!\n"; - -$ENV{'HARNESS_COMPILE_TEST'} = 1; -$ENV{'PERLCC_TIMEOUT'} = 120 unless $ENV{'PERLCC_TIMEOUT'}; - -Test::Harness::runtests @tests; -foreach (keys %datahandle) { - unlink "$_.t"; -} +exit(0);