X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2FTEST;h=f2f623df797b556a6864b185e27adb235ecfdb90;hb=16e1b94401335fe86d42338fc14a6680fc469ab0;hp=9ac287a7f4a5794a668313d103eca43f45c87476;hpb=5dc83c4054cb6624685a80f58caabe5e173a543f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/TEST b/t/TEST index 9ac287a..f2f623d 100755 --- a/t/TEST +++ b/t/TEST @@ -97,7 +97,7 @@ unless (@ARGV) { my $mani = File::Spec->catfile($updir, "MANIFEST"); if (open(MANI, $mani)) { while () { # similar code in t/harness - if (m!^(ext/\S+/?([^/]+\.t|test\.pl)|lib/\S+?(\.t|test\.pl))\s!) { + if (m!^(ext/\S+/?(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) { $t = $1; if (!$core || $t =~ m!^lib/[a-z]!) { @@ -321,11 +321,11 @@ EOT } if ($ENV{PERL_3LOG}) { my $tpp = $test; - $tpp =~ s:^../::; + $tpp =~ s:^\.\./::; $tpp =~ s:/:_:g; - $tpp =~ s:\.t$::; - rename("perl.3log", "perl.3log.$tpp") || - die "rename: perl3.log to perl.3log.$tpp: $!\n"; + $tpp =~ s:\.t$:.3log:; + rename("perl.3log", $tpp) || + die "rename: perl3.log to $tpp: $!\n"; } $next = $next - 1; # test if the compiler compiled something