diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-09-14 18:07:02 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-09-14 18:07:02 -0700 |
commit | 4498dc0f01ccdb0a677dee5cf09e2b9666fa7202 (patch) | |
tree | bd0a4b7b24eece985086020d07c6265dcd5543c7 /t/io | |
parent | 44f59ad0511849bbfc4affa2a509dafaf6ce3007 (diff) | |
download | perl-4498dc0f01ccdb0a677dee5cf09e2b9666fa7202.tar.gz |
shm.t: Skip under miniperl
Diffstat (limited to 't/io')
-rw-r--r-- | t/io/shm.t | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/io/shm.t b/t/io/shm.t index bcd3da5cc2..bd5fe8a61b 100644 --- a/t/io/shm.t +++ b/t/io/shm.t @@ -26,6 +26,9 @@ BEGIN { if ($ENV{'PERL_CORE'} && $Config{'extensions'} !~ m[\bIPC/SysV\b]) { plan(skip_all => 'IPC::SysV was not built'); } + unless(defined &DynaLoader::boot_DynaLoader) { # miniperl + plan(skip_all => 'miniperl'); + } if ($Config{'d_shm'} ne 'define') { plan(skip_all => '$Config{d_shm} undefined'); } |