summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2016-08-18 15:42:36 -0700
committerFather Chrysostomos <sprout@cpan.org>2016-08-18 15:43:12 -0700
commit1b2ebdae9234712604cd7568ffaddc71dfb881d4 (patch)
tree7b00ad81f9ed2ad7a7ddd35483d7f5bad63f0a52
parent24d2c0a4c43980a45c678a1f8ef38d1a6d754448 (diff)
downloadperl-1b2ebdae9234712604cd7568ffaddc71dfb881d4.tar.gz
getpid.t miniperl fix-up
-rw-r--r--t/op/getpid.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/op/getpid.t b/t/op/getpid.t
index 6ae05fc4cb..109edd2882 100644
--- a/t/op/getpid.t
+++ b/t/op/getpid.t
@@ -6,6 +6,9 @@ BEGIN {
chdir 't' if -d 't';
require './test.pl';
set_up_inc( qw(../lib) );
+ skip_all_if_miniperl(
+ "no dynamic loading on miniperl, no threads/attributes"
+ );
}
use strict;
@@ -13,7 +16,6 @@ use Config;
{
skip_all_without_config(qw(useithreads d_getppid));
- skip_all_if_miniperl("no dynamic loading on miniperl, no threads");
eval 'use threads; use threads::shared';
plan tests => 3;
if ($@) {