diff options
author | Craig A. Berry <craigberry@mac.com> | 2011-09-16 15:07:42 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2011-09-16 15:07:42 -0500 |
commit | 044255daec5f194efc6dddea40775e10196ec9cc (patch) | |
tree | cd6d1495718a2d0d63e381c92e1a5ceb60aa6494 /t | |
parent | bc6b2ef6926f6ffd927b14f2a709a49f15e6e633 (diff) | |
download | perl-044255daec5f194efc6dddea40775e10196ec9cc.tar.gz |
skip_all is a sub in t/test.pl.
plan(skip_all => 'foo') is a Test::More-ism that survived the
switch to t/test.pl in 8d646433865d105d3ca0f95dd6593fe343e37aa2
unchanged and caused the test to fail where d_shm is not defined
or IPC::SysV is not built.
Diffstat (limited to 't')
-rw-r--r-- | t/io/shm.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/io/shm.t b/t/io/shm.t index 520f42742f..0ba566b1d4 100644 --- a/t/io/shm.t +++ b/t/io/shm.t @@ -24,11 +24,11 @@ BEGIN { require Config; import Config; if ($ENV{'PERL_CORE'} && $Config{'extensions'} !~ m[\bIPC/SysV\b]) { - plan(skip_all => 'IPC::SysV was not built'); + skip_all('-- IPC::SysV was not built'); } skip_all_if_miniperl(); if ($Config{'d_shm'} ne 'define') { - plan(skip_all => '$Config{d_shm} undefined'); + skip_all('-- $Config{d_shm} undefined'); } } |