parent-versioned
view release on metacpan or search on metacpan
t/parent-pmc.t view on Meta::CPAN
use strict;
use Test::More;
use Config;
use lib 't/lib';
plan skip_all => ".pmc are only available with 5.6 and later" if $] < 5.006;
# Skip this test if perl is compiled with PERL_DISABLE_PMC
#
my $pmc = 1;
if (Config->can('non_bincompat_options')) { # $] ge '5.014'
$pmc = 0
if grep { $_ eq 'PERL_DISABLE_PMC' } Config::non_bincompat_options();
} elsif (eval {
require Config::Perl::V;
Config::Perl::V->VERSION('0.10');
}) {
$pmc = 0
if Config::Perl::V::myconfig()->{options}{PERL_DISABLE_PMC};
} else {
$pmc = 0
( run in 0.587 second using v1.01-cache-2.11-cpan-cc502c75498 )