In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/9f7ba77d76fb7406010117db6bfe6b5f86b376b6?hp=8e7f1f724eb9360bef95eb47b50c93350a9fe142>
- Log ----------------------------------------------------------------- commit 9f7ba77d76fb7406010117db6bfe6b5f86b376b6 Author: Jarkko Hietaniemi <[email protected]> Date: Fri Oct 16 20:57:55 2015 -0400 rt.perl.org perl #88814 was revived in openbsd by commit 23705063. openbsd pre-5.2 + threads + signals is broken, and 23705063 made threads the default. Similar case to 8e7f1f72. ----------------------------------------------------------------------- Summary of changes: t/op/sigdispatch.t | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/t/op/sigdispatch.t b/t/op/sigdispatch.t index 9808f7b..242fb8e 100644 --- a/t/op/sigdispatch.t +++ b/t/op/sigdispatch.t @@ -44,8 +44,9 @@ SKIP: { skip('We can\'t test blocking without sigprocmask', 17) if is_miniperl() || !$Config{d_sigprocmask}; skip("This doesn\'t work on $^O threaded builds RT#88814", 17) - if ($^O =~ /cygwin/ || $^O eq "openbsd" && $Config{osvers} < 5.2) - && $Config{useithreads}; + if ($^O =~ /cygwin/ && $Config{useithreads}); + skip("This doesn\'t work on $^O version $Config{osvers} RT#88814", 17) + if ($^O eq "openbsd" && $Config{osvers} < 5.2); require POSIX; my $pending = POSIX::SigSet->new(); -- Perl5 Master Repository
