Skip to content

Commit

Permalink
1.04
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieb9 committed Jun 28, 2021
1 parent a49c6fb commit 8727edd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
5 changes: 3 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Revision history for Perl extension IPC::Shareable.

1.04 UNREL
-
1.04 2021-06-28
- Skip unspawn tests for perls with -Duselongdouble, as Storable is not
compatible storing/retrieving such numbers (closes #5)

1.03 2021-06-25
- Add newline to singleton() warn so that it doesn't print out trace info
Expand Down
14 changes: 5 additions & 9 deletions t/71-unspawn.t
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
use warnings;
use strict;

unless ( $ENV{RELEASE_TESTING} ) {
# Some systems don't have IPC::Semaphore pre-installed, so
# because IPC::Shareable isn't installed when this test runs,
# the former software isn't available for t/_spawm to initiate
# a shared memory segment
# plan( skip_all => "Author test: RELEASE_TESTING not set" );
}

use Data::Dumper;
use Config;
use IPC::Shareable;
use Test::More;

if ($Config{nvsize} != 8) {
plan skip_all => "Storable not compatible with long doubles";
}

system "$^X t/_spawn";

tie my %h, 'IPC::Shareable', {
Expand Down
9 changes: 5 additions & 4 deletions t/72-unspawn_destroy.t
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
use warnings;
use strict;

unless ( $ENV{RELEASE_TESTING} ) {
# plan( skip_all => "Author test: RELEASE_TESTING not set" );
}

use Config;
use Data::Dumper;
use IPC::Shareable;
use Test::More;

if ($Config{nvsize} != 8) {
plan skip_all => "Storable not compatible with long doubles";
}

tie my %h, 'IPC::Shareable', {
key => 'aaaa',
destroy => 1,
Expand Down

0 comments on commit 8727edd

Please sign in to comment.