Skip Menu |

This queue is for tickets about the IPC-SysV CPAN distribution.

Report information
The Basics
Id: 112827
Status: resolved
Priority: 0/
Queue: IPC-SysV

People
Owner: Nobody in particular
Requestors: TONYC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 2.05
Fixed in: (no value)



Subject: incorrect skip count in t/ipcsysv.t
IPC-SysV 2.05 added a new test to the shm test block in t/ipcsysv.t, but didn't update the skip counts for that block. Fixed by the attached. Tony
Subject: 0001-fix-skip-count-for-shm-block-due-to-new-test-added-i.patch
From 3322f9ab7d570ed6533a9edeadaae33747e8f971 Mon Sep 17 00:00:00 2001 From: Tony Cook <tony@develop-help.com> Date: Wed, 9 Mar 2016 10:11:13 +1100 Subject: fix skip count for shm block due to new test added in 2.05 --- t/ipcsysv.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/ipcsysv.t b/t/ipcsysv.t index c7a92ed..68d2a05 100644 --- a/t/ipcsysv.t +++ b/t/ipcsysv.t @@ -266,7 +266,7 @@ SKIP: { } SKIP: { - skip('lacking d_shm', 10) unless + skip('lacking d_shm', 11) unless $Config{'d_shm'} eq 'define'; use IPC::SysV qw(shmat shmdt memread memwrite ftok); @@ -275,7 +275,7 @@ SKIP: { # Very first time called after machine is booted value may be 0 unless (defined $shm && $shm >= 0) { - skip(skip_or_die('shmget', $!), 10); + skip(skip_or_die('shmget', $!), 11); } pass("shm acquire"); -- 2.1.4
Thanks, applied, 2.07 hitting CPAN now.