Jerry D. Hedden [Wed, 16 May 2007 14:18:05 +0000 (10:18 -0400)]
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <
1ff86f510705161118x55e9d18crdf376ca469f97dc7@mail.gmail.com>
p4raw-id: //depot/perl@31233
Revision history for Perl extension threads::shared.
+-
+ - Skip stress test under HP-UX 10.20
+
1.11 Mon May 14 12:13:37 2007
- Modify stress test to be TODO under MSWin32
- Store user locks safely
use strict;
use warnings;
-our $VERSION = '1.11';
+our $VERSION = '1.11_01';
my $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
+ if ($^O eq 'hpux' && $Config{osvers} <= 10.20) {
+ print("1..0 # Skip: Broken under HP-UX 10.20\n");
+ exit(0);
+ }
}
use ExtUtils::testlib;