diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-05-17 14:59:20 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-05-17 14:59:20 +0000 |
commit | ec3f2d8be8ce8cf45558045599c51ca3f4d57e3e (patch) | |
tree | d201700c14bb6a5173d51efcb969fa66af7c4253 /t | |
parent | d6240823f336ddd3e33fedd974418b05bff3ad24 (diff) | |
parent | b194b55204233387f5607cc8e73f91aec4b9abc2 (diff) | |
download | perl-ec3f2d8be8ce8cf45558045599c51ca3f4d57e3e.tar.gz |
Integrate mainline
p4raw-id: //depot/perlio@16655
Diffstat (limited to 't')
-rwxr-xr-x | t/TEST | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -321,11 +321,11 @@ EOT } if ($ENV{PERL_3LOG}) { my $tpp = $test; - $tpp =~ s:^../::; - if ($tpp =~ m:/:) { $tpp =~ s:/:_:g } else { $tpp = "op_$tpp" } - $tpp =~ s:\.t$::; - rename("perl.3log", "perl.3log.$tpp") || - die "rename: perl3.log to perl.3log.$tpp: $!\n"; + $tpp =~ s:^\.\./::; + $tpp =~ s:/:_:g; + $tpp =~ s:\.t$:.3log:; + rename("perl.3log", $tpp) || + die "rename: perl3.log to $tpp: $!\n"; } $next = $next - 1; # test if the compiler compiled something |