summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2010-02-10 19:41:48 -0600
committerSteve Peters <steve@fisharerojo.org>2010-02-10 19:41:48 -0600
commit9a43387b39cb0e760b618a3cc42bba6c0c90ec31 (patch)
tree09b588da47a254e05a7a38676681167d2eb9757a
parentb9ad13acb338e137b9560a8b578e1f7c983706be (diff)
downloadperl-9a43387b39cb0e760b618a3cc42bba6c0c90ec31.tar.gz
Per Jesse, ignoring the skipping the tests form threaded OpenBSD
builds. See RT #71504 for the mess that this is avoiding.
-rw-r--r--t/io/errno.t4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/io/errno.t b/t/io/errno.t
index ad4e1168a9..aff3369615 100644
--- a/t/io/errno.t
+++ b/t/io/errno.t
@@ -5,6 +5,8 @@
# http://rt.perl.org/rt3/Ticket/Display.html?id=39060
use strict;
+use Config;
+
require './test.pl';
plan( tests => 16 );
@@ -25,6 +27,8 @@ 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';
my $test_in_esc = $test_in;
$test_in_esc =~ s/\n/\\n/g;
for my $rs_code ('', '$/=undef', '$/=\2', '$/=\1024') {