summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2011-04-26 18:21:52 +1000
committerJesse Vincent <jesse@bestpractical.com>2011-04-27 17:49:22 +0800
commit2cf7ccf4931854c14e60926e895b739f6089d299 (patch)
tree03bcd9d3ec456b7d160e2f872116c729ee626cea
parent96b425ede5ee8d35bb6ccaade9e6b785575c9ffc (diff)
downloadperl-2cf7ccf4931854c14e60926e895b739f6089d299.tar.gz
skip a problematic test on openbsd/thread
I'd make this a TODO, but the test currently results in the watchdog firing, so harness/TEST would never see the "TODO".
-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);