Skip t/io/eintr.t for Solaris 8 as well
authorAndy Dougherty <doughera@lafayette.edu>
Tue, 22 Mar 2011 13:46:49 +0000 (09:46 -0400)
committerAndy Dougherty <doughera@lafayette.edu>
Tue, 22 Mar 2011 13:46:49 +0000 (09:46 -0400)
(see tickets perl #85842 and #84688).

t/io/eintr.t

index dc93660..04952b6 100644 (file)
@@ -45,7 +45,8 @@ if (exists $ENV{PERLIO} && $ENV{PERLIO} =~ /stdio/  ) {
 # On FreeBSD, writes to pipes of 8192 bytes or more use a mechanism
 # that is not interruptible (see perl #85842 and #84688).
 
-if ($^O eq 'VMS' || $^O eq 'MSWin32' || $^O eq 'cygwin' || $^O eq 'freebsd') {
+if ($^O eq 'VMS' || $^O eq 'MSWin32' || $^O eq 'cygwin' || $^O eq 'freebsd' || 
+     ($^O eq 'solaris' && $Config{osvers} eq '2.8') ) {
        skip_all('various portability issues');
        exit 0;
 }