summaryrefslogtreecommitdiff
path: root/t/TEST
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-03-02 22:02:36 +0000
committerNicholas Clark <nick@ccl4.org>2004-03-02 22:02:36 +0000
commit43651d81392f71a2868d35b75782d354b0139c90 (patch)
tree7867f13e33750fe244b05a78c9455989b9214006 /t/TEST
parent9acd3e2cb8772b6eb8d3f739a8401e73420609ba (diff)
downloadperl-43651d81392f71a2868d35b75782d354b0139c90.tar.gz
Work on eliminating systematic failures on make minitest:
make minitest passes a -minitest flag to t/TEST t/TEST sees this and sets $ENV{PERL_CORE_MINITEST} Tests can choose to skip based on this. (Other tactic is to make loading of Errno by %! happen at run time.) p4raw-id: //depot/perl@22423
Diffstat (limited to 't/TEST')
-rwxr-xr-xt/TEST1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/TEST b/t/TEST
index 7ff34b2a7c..5d5727ad05 100755
--- a/t/TEST
+++ b/t/TEST
@@ -24,6 +24,7 @@ if ($#ARGV >= 0) {
$bytecompile = 1 if $1 eq 'bytecompile';
$compile = 1 if $1 eq 'compile';
$taintwarn = 1 if $1 eq 'taintwarn';
+ $ENV{PERL_CORE_MINITEST} = 1 if $1 eq 'minitest';
if ($1 =~ /^deparse(,.+)?$/) {
$deparse = 1;
$deparse_opts = $1;