summaryrefslogtreecommitdiff
path: root/t/harness
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-09-06 14:04:33 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-09-06 14:04:33 +0000
commitde1254415ffeb03ba71a0802be6f212b10153304 (patch)
tree8ebd5287b407a8f18ca3ed35c80b8e55b8127493 /t/harness
parentb6717e144d05264a3d0614dbad53f919e8a59efc (diff)
downloadperl-de1254415ffeb03ba71a0802be6f212b10153304.tar.gz
Remove perlcc and the byteloader
p4raw-id: //depot/perl@28790
Diffstat (limited to 't/harness')
-rw-r--r--t/harness40
1 files changed, 1 insertions, 39 deletions
diff --git a/t/harness b/t/harness
index b58bbb5ff8..8c8ffaa36d 100644
--- a/t/harness
+++ b/t/harness
@@ -126,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 (($_=<DATA>) =~ /^__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, <F>;
- 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);