summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/threads/shared/Changes3
-rw-r--r--ext/threads/shared/shared.pm2
-rw-r--r--ext/threads/shared/t/stress.t4
3 files changed, 8 insertions, 1 deletions
diff --git a/ext/threads/shared/Changes b/ext/threads/shared/Changes
index 6c9ed3d3e3..53f5328325 100644
--- a/ext/threads/shared/Changes
+++ b/ext/threads/shared/Changes
@@ -1,5 +1,8 @@
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
diff --git a/ext/threads/shared/shared.pm b/ext/threads/shared/shared.pm
index 9041926bab..4b42667add 100644
--- a/ext/threads/shared/shared.pm
+++ b/ext/threads/shared/shared.pm
@@ -5,7 +5,7 @@ use 5.008;
use strict;
use warnings;
-our $VERSION = '1.11';
+our $VERSION = '1.11_01';
my $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/ext/threads/shared/t/stress.t b/ext/threads/shared/t/stress.t
index f2f7d60b2e..86a04e2df1 100644
--- a/ext/threads/shared/t/stress.t
+++ b/ext/threads/shared/t/stress.t
@@ -11,6 +11,10 @@ BEGIN {
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;