diff options
author | Niko Tyni <ntyni@debian.org> | 2011-08-04 08:33:39 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-04 08:37:24 -0700 |
commit | e683222a962029adcd0d77766df95d2ce2db8f55 (patch) | |
tree | 25da5f452e243f657f4a8d0ba655dc3a7247e5c0 /t/io | |
parent | 9cfd094e6d0a842551c1c58e998eb057cd8425e3 (diff) | |
download | perl-e683222a962029adcd0d77766df95d2ce2db8f55.tar.gz |
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.
Diffstat (limited to 't/io')
-rw-r--r-- | t/io/eintr.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/eintr.t b/t/io/eintr.t index e545228f97..966922bbe7 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) ) { |