From: Jarkko Hietaniemi Date: Tue, 19 Jun 2001 23:58:25 +0000 (+0000) Subject: The test.third results were funnily named because of the X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a7da9a42f1696505415b30f979c4f52d77a60af6;p=p5sagit%2Fp5-mst-13.2.git The test.third results were funnily named because of the new test scheme. p4raw-id: //depot/perl@10740 --- diff --git a/t/TEST b/t/TEST index 5fcc268..0a63f0e 100755 --- a/t/TEST +++ b/t/TEST @@ -190,7 +190,8 @@ EOT or print "can't deparse '$deparse': $!.\n"; } elsif ($type eq 'perl') { - my $run = "./perl $testswitch $switch $utf $test |"; + my $perl = $ENV{PERL} || './perl'; + my $run = "$perl $testswitch $switch $utf $test |"; open(RESULTS,$run) or print "can't run '$run': $!.\n"; } else { @@ -250,9 +251,11 @@ EOT } if ($ENV{PERL_3LOG}) { my $tpp = $test; + $tpp =~ s:^../::; $tpp =~ s:/:_:g; $tpp =~ s:\.t$::; - rename("perl.3log", "perl.3log.$tpp"); + rename("perl.3log", "perl.3log.$tpp") || + die "rename: perl3.log to perl.3log.$tpp: $!\n"; } $next = $next - 1; if ($ok && $next == $max) {