In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/772973e0724bdb6a9124827cd75fc2db56e5a443?hp=2d5eff8a327fe1223ece6572afd1b7e15d4629a7>

- Log -----------------------------------------------------------------
commit 772973e0724bdb6a9124827cd75fc2db56e5a443
Author: Jarkko Hietaniemi <[email protected]>
Date:   Wed Mar 22 07:14:43 2017 -0400

    Skip %Config test under minitest.
-----------------------------------------------------------------------

Summary of changes:
 t/run/runenv.t | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/t/run/runenv.t b/t/run/runenv.t
index 611e012a63..fe0d9cd1b6 100644
--- a/t/run/runenv.t
+++ b/t/run/runenv.t
@@ -298,12 +298,15 @@ is ($err, '', 'No errors when determining @INC');
 
 my @default_inc = split /\n/, $out;
 
+SKIP: {
+  skip_if_miniperl("under miniperl", 1);
 if ($Config{default_inc_excludes_dot}) {
     ok !(grep { $_ eq '.' } @default_inc), '. is not in @INC';
 }
 else {
     is ($default_inc[-1], '.', '. is last in @INC');
 }
+}
 
 my $sep = $Config{path_sep};
 foreach (['nothing', ''],

--
Perl5 Master Repository

Reply via email to