From: Niko Tyni Date: Thu, 4 Aug 2011 15:33:39 +0000 (-0700) Subject: Skip the hanging eintr.t test on GNU/kFreeBSD too X-Git-Tag: accepted/trunk/20130322.191538~3148^2~92 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e683222a962029adcd0d77766df95d2ce2db8f55;p=platform%2Fupstream%2Fperl.git 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. --- 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) ) {