In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/8e7f1f724eb9360bef95eb47b50c93350a9fe142?hp=bd6795291f574ca771359916e562026633921c57>

- Log -----------------------------------------------------------------
commit 8e7f1f724eb9360bef95eb47b50c93350a9fe142
Author: Jarkko Hietaniemi <[email protected]>
Date:   Fri Oct 16 19:52:30 2015 -0400

    perl #126306: openbsd t/io/errno.t tests fail randomly
    
    perl #71504 added the skip for openbsd+threads+stdio;
    then commit 23705063 made -lpthread the default,
    necessitating the skip even without threads.
-----------------------------------------------------------------------

Summary of changes:
 t/io/errno.t | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/t/io/errno.t b/t/io/errno.t
index 8d0f4b2..d8fc4b2 100644
--- a/t/io/errno.t
+++ b/t/io/errno.t
@@ -28,8 +28,10 @@ for my $perlio ('perlio', 'stdio') {
 SKIP:
     for my $test_in ("test\n", "test") {
                skip("Guaranteed newline at EOF on VMS", 4) if $^O eq 'VMS' && 
$test_in eq 'test';
-                skip("[perl #71504] OpenBSD test failures in errno.t with 
ithreads and perlio", 8)
-                    if $^O eq 'openbsd' && $Config{useithreads} && $perlio eq 
'stdio';
+                # perl #71504 added skip in openbsd+threads+stdio;
+                # then commit 23705063 made -lpthread the default.
+                skip("[perl #71504] OpenBSD test failures in errno.t with 
ithreads and perlio]; [perl #126306: openbsd t/io/errno.t tests fail 
randomly]", 8)
+                    if $^O eq 'openbsd' && $perlio eq 'stdio';
                my $test_in_esc = $test_in;
                $test_in_esc =~ s/\n/\\n/g;
                for my $rs_code ('', '$/=undef', '$/=\2', '$/=\1024') {

--
Perl5 Master Repository

Reply via email to