Change 34290 by [EMAIL PROTECTED] on 2008/09/06 06:35:49
Remove the vestigal variable %infinite, which dates from change 963,
was commented out of use in 8955, and removed in change 28790,
"Remove perlcc and the byteloader", which isn't to be merged.
Affected files ...
... //depot/maint-5.8/perl/t/harness#10 edit
Differences ...
==== //depot/maint-5.8/perl/t/harness#10 (text) ====
Index: perl/t/harness
--- perl/t/harness#9~33216~ 2008-02-02 14:23:57.000000000 -0800
+++ perl/t/harness 2008-09-05 23:35:49.000000000 -0700
@@ -129,19 +129,11 @@
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 (($_=<DATA>) =~ /^__END__/) {};
EOT
[EMAIL PROTECTED] = grep (!$infinite{$_}, @tests);
@tests = map {
my $new = $_;
if ($datahandle{$_} && !( -f "$new.t") ) {
@@ -156,9 +148,6 @@
$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'};
End of Patch.