mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 16:39:36 +00:00
Two small tidying refactors for TestInit.pm
Make the order of backslash and forward slash in character classes consistent.
Move the top level modification of $0 adjacent to the top level modification of
$ENV{PERL_CORE}.
This commit is contained in:
parent
d36b6fc666
commit
6bb18b5407
@ -27,6 +27,8 @@ $VERSION = 1.04;
|
||||
# http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-07/msg00154.html
|
||||
$ENV{PERL_CORE} = $^X;
|
||||
|
||||
$0 =~ s/\.dp$//; # for the test.deparse make target
|
||||
|
||||
sub import {
|
||||
my $self = shift;
|
||||
my @up_2_t = ('../../lib', '../../t');
|
||||
@ -65,7 +67,7 @@ sub import {
|
||||
$chdir = $1;
|
||||
@INC = @up_2_t;
|
||||
$setopt = 1;
|
||||
$^X =~ s!^\.([/\\])!..$1..$1!;
|
||||
$^X =~ s!^\.([\\/])!..$1..$1!;
|
||||
} else {
|
||||
$chdir = 't';
|
||||
@INC = '../lib';
|
||||
@ -110,5 +112,4 @@ sub import {
|
||||
push @INC, '.' unless ${^TAINT};
|
||||
}
|
||||
|
||||
$0 =~ s/\.dp$//; # for the test.deparse make target
|
||||
1;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user