summaryrefslogtreecommitdiff
path: root/t/run
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2017-03-22 07:14:43 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2017-03-22 07:14:43 -0400
commit772973e0724bdb6a9124827cd75fc2db56e5a443 (patch)
treebb7f4765d1188aa22abf26309915a6ef98d8978e /t/run
parent2d5eff8a327fe1223ece6572afd1b7e15d4629a7 (diff)
downloadperl-772973e0724bdb6a9124827cd75fc2db56e5a443.tar.gz
Skip %Config test under minitest.
Diffstat (limited to 't/run')
-rw-r--r--t/run/runenv.t3
1 files changed, 3 insertions, 0 deletions
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', ''],