# This is a replacement for the old BEGIN preamble which heads (or
-# should head) up every core test program to prepare it for running.
-# Now instead of:
+# should head) up every core test program to prepare it for running:
#
# BEGIN {
# chdir 't' if -d 't';
# Its primary purpose is to clear @INC so core tests don't pick up
# modules from an installed Perl.
#
-# t/TEST will use -MTestInit. You may "use TestInit" in the test
-# programs but it is not required.
+# t/TEST and t/harness will invoke each test script with
+# perl -MTestInit[=arg,arg,..] some/test.t
+# You may "use TestInit" in the test # programs but it is not required.
+#
+# TestInit will completely empty the current @INC and replace it with
+# new entries based on the args:
+#
+# U2T: adds ../../lib and ../../t;
+# U1: adds ../lib;
+# T: adds lib and chdir's to the top-level directory.
+#
+# In the absence of any of the above options, it chdir's to
+# t/ or cpan/Foo-Bar/ etc as appropriate and correspondingly
+# sets @INC to (../lib) or ( ../../lib, ../../t)
+#
+# In addition,
+#
+# A: converts any added @INC entries to absolute paths;
+# NC: unsets $ENV{PERL_CORE};
+# DOT: unconditionally appends '.' to @INC.
+#
+# Any trailing '.' in @INC present on entry will be preserved.
#
# P.S. This documentation is not in POD format in order to avoid
# problems when there are fundamental bugs in perl.
$0 =~ s/\.dp$//; # for the test.deparse make target
+my $add_dot = (@INC && $INC[-1] eq '.'); # preserve existing,
+
sub import {
my $self = shift;
my @up_2_t = ('../../lib', '../../t');
} elsif ($_ eq 'T') {
$chdir = '..'
unless -f 't/TEST' && -f 'MANIFEST' && -d 'lib' && -d 'ext';
- @INC = qw/ lib . /;
+ @INC = 'lib';
$setopt = 1;
+ } elsif ($_ eq 'DOT') {
+ $add_dot = 1;
} else {
die "Unknown option '$_'";
}
}
}
- push @INC, '.' unless ${^TAINT};
+ push @INC, '.' if $add_dot;
}
1;
'../dist/Unicode-Normalize' => 1,
);
+# temporary workaround Apr 2017. These need '.' in @INC.
+# Ideally this # list will eventually be empty
+
+my %temp_needs_dot = map { $_ => 1 } qw(
+ ../cpan/ExtUtils-Install
+ ../cpan/Filter-Util-Call
+ ../cpan/libnet
+ ../cpan/Locale-Codes
+ ../cpan/Math-BigInt
+ ../cpan/Math-BigRat
+ ../cpan/Test-Harness
+ ../cpan/Test-Simple
+ ../cpan/version
+);
+
+
# delete env vars that may influence the results
# but allow override via *_TEST env var if wanted
# (e.g. PERL5OPT_TEST=-d:NYTProf)
my @bad_env_vars = qw(
PERL5LIB PERLLIB PERL5OPT
PERL_YAML_BACKEND PERL_JSON_BACKEND
- PERL_USE_UNSAFE_INC
);
for my $envname (@bad_env_vars) {
if ($temp_no_core{$run_dir}) {
$testswitch = $testswitch . ',NC';
}
+ if($temp_needs_dot{$run_dir}) {
+ $testswitch = $testswitch . ',DOT';
+ }
}
} elsif ($test =~ m!^\.\./lib!) {
$testswitch = '-I.. -MTestInit=U1'; # -T will remove . from @INC