summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--t/op/sigdispatch.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/op/sigdispatch.t b/t/op/sigdispatch.t
index c61a5dcb21..aa8a6c7d96 100644
--- a/t/op/sigdispatch.t
+++ b/t/op/sigdispatch.t
@@ -41,6 +41,8 @@ is($@, "Alarm!\n", 'after the second loop');
SKIP: {
skip('We can\'t test blocking without sigprocmask', 11)
if is_miniperl() || !$Config{d_sigprocmask};
+ skip('This doesn\'t work on OpenBSD threaded builds RT#88814', 11)
+ if $^O eq 'openbsd' && $Config{useithreads};
require POSIX;
my $new = POSIX::SigSet->new(&POSIX::SIGUSR1);