Ensure $ENV{PERL_CORE} is always set, but correctly tainted.
[p5sagit/p5-mst-13.2.git] / t / TestInit.pm
index b90e150..15af57a 100644 (file)
@@ -7,6 +7,9 @@
 #   @INC = '../lib';
 # }
 #
+# 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.
 #
 
 package TestInit;
 
+$VERSION = 1.01;
+
 chdir 't' if -d 't';
 @INC = '../lib';
-$ENV{PERL_CORE} = 1;
+
+# Don't interfere with the taintedness of %ENV, this could perturbate tests.
+# This feels like a better solution than the original, from
+# 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
 1;