From e683222a962029adcd0d77766df95d2ce2db8f55 Mon Sep 17 00:00:00 2001 From: Niko Tyni Date: Thu, 4 Aug 2011 08:33:39 -0700 Subject: [PATCH] Skip the hanging eintr.t test on GNU/kFreeBSD too As we're still using a list of hanging operating systems, include 'gnukfreebsd' by matching for 'freebsd' anywhere in $^O. --- t/io/eintr.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/io/eintr.t b/t/io/eintr.t index e545228..966922b 100644 --- a/t/io/eintr.t +++ b/t/io/eintr.t @@ -49,7 +49,7 @@ if (exists $ENV{PERLIO} && $ENV{PERLIO} =~ /stdio/ ) { # Also skip on release builds, to avoid other possibly problematic # platforms -if ($^O eq 'VMS' || $^O eq 'MSWin32' || $^O eq 'cygwin' || $^O eq 'freebsd' || +if ($^O eq 'VMS' || $^O eq 'MSWin32' || $^O eq 'cygwin' || $^O =~ /freebsd/ || ($^O eq 'solaris' && $Config{osvers} eq '2.8') || ((int($]*1000) & 1) == 0) ) { -- 2.7.4