summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2011-09-16 15:07:42 -0500
committerCraig A. Berry <craigberry@mac.com>2011-09-16 15:07:42 -0500
commit044255daec5f194efc6dddea40775e10196ec9cc (patch)
treecd6d1495718a2d0d63e381c92e1a5ceb60aa6494 /t
parentbc6b2ef6926f6ffd927b14f2a709a49f15e6e633 (diff)
downloadperl-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.t4
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');
}
}