In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/afc9f58aec664a5ac224b25128b812019a7de936?hp=b511b76c13128d58be6ce6f501c501d208b69a4e>

- Log -----------------------------------------------------------------
commit afc9f58aec664a5ac224b25128b812019a7de936
Merge: 9b7c0b5 b511b76
Author: Andy Dougherty <[email protected]>
Date:   Wed Mar 23 00:01:51 2011 -0400

    Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead

commit 9b7c0b5703a1436223050628b0f3ded64f28440d
Merge: 8f95256 384f75d
Author: Andy Dougherty <[email protected]>
Date:   Tue Mar 22 23:27:33 2011 -0400

    Merge branch 'andyd' into blead

commit 384f75dc31e7d3a9cee05f34491d02ef8f69d6df
Author: Andy Dougherty <[email protected]>
Date:   Tue Mar 22 23:26:43 2011 -0400

    Skip t/io/eintr.t for Solaris 8 as well
    
    (See tickets perl #85842 and #84688).  I don't know if this is the same
    as the FreeBSD problem or not.  Solaris 10 and 11 don't have any problem
    with the test.

M       t/io/eintr.t

commit 8f95256352fdfc400c1186bd61d3c0b081c67d90
Merge: 400666a b5833d3
Author: Andy Dougherty <[email protected]>
Date:   Tue Mar 22 17:36:39 2011 -0400

    Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead

commit 400666af1bcbb40381691f6510cc9e218a841f67
Author: Andy Dougherty <[email protected]>
Date:   Tue Mar 22 16:43:01 2011 -0400

    Improve comment for skipped test on Solaris in t/io/eintr.t

M       t/io/eintr.t

commit d6a735e7541bb62da45514dc52deff2c183b606a
Author: Andy Dougherty <[email protected]>
Date:   Tue Mar 22 09:46:49 2011 -0400

    Skip t/io/eintr.t for Solaris 8 as well
    
    (see tickets perl #85842 and #84688).

M       t/io/eintr.t
-----------------------------------------------------------------------

Summary of changes:
 t/io/eintr.t |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/t/io/eintr.t b/t/io/eintr.t
index dc93660..35bde53 100644
--- a/t/io/eintr.t
+++ b/t/io/eintr.t
@@ -44,8 +44,10 @@ if (exists $ENV{PERLIO} && $ENV{PERLIO} =~ /stdio/  ) {
 # Similar issues with VMS.
 # On FreeBSD, writes to pipes of 8192 bytes or more use a mechanism
 # that is not interruptible (see perl #85842 and #84688).
+# "close during print" also hangs on Solaris 8 (but not 10 or 11).
 
-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;
 }

--
Perl5 Master Repository

Reply via email to