In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/b6646683566e99be17e2b4644b44663f440270ee?hp=5a0c7e9d45ff6da450098635b233527990112d8a>
- Log ----------------------------------------------------------------- commit b6646683566e99be17e2b4644b44663f440270ee Author: David Golden <[email protected]> Date: Fri May 4 11:02:26 2012 -0400 delete PERL_YAML_BACKEND and PERL_JSON_BACKEND in T/TEST If these are set, Parse-CPAN-Meta and other things that depend on it may fail. ----------------------------------------------------------------------- Summary of changes: t/TEST | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/t/TEST b/t/TEST index c2c81e9..f635da7 100755 --- a/t/TEST +++ b/t/TEST @@ -81,7 +81,12 @@ my %temp_no_core = # delete env vars that may influence the results # but allow override via *_TEST env var if wanted # (e.g. PERL5OPT_TEST=-d:NYTProf) -for my $envname (qw(PERL5LIB PERLLIB PERL5OPT)) { +my @bad_env_vars = qw( + PERL5LIB PERLLIB PERL5OPT + PERL_YAML_BACKEND PERL_JSON_BACKEND +); + +for my $envname (@bad_env_vars) { my $override = $ENV{"${envname}_TEST"}; if (defined $override) { warn "$0: $envname=$override\n"; -- Perl5 Master Repository
