In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/476c37e218c9f95449edad498eaac770dc5acde9?hp=804b5feed5ce753c1ebc35a2561ce8b17140f02c>

- Log -----------------------------------------------------------------
commit 476c37e218c9f95449edad498eaac770dc5acde9
Author: Nicholas Clark <n...@ccl4.org>
Date:   Tue Apr 19 20:47:16 2011 +0100

    On Win32, skip the tests added in 011c3814, as alarm can't interrupt select.
-----------------------------------------------------------------------

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

diff --git a/t/op/sigdispatch.t b/t/op/sigdispatch.t
index 29fc062..2e36a84 100644
--- a/t/op/sigdispatch.t
+++ b/t/op/sigdispatch.t
@@ -93,7 +93,9 @@ TODO:
     is $gotit, 0, 'Received both signals';
 }
 
-{
+SKIP: {
+    skip("alarm cannot interrupt blocking system calls on $^O", 2)
+       if $^O eq 'MSWin32';
     # RT #88774
     # make sure the signal handler's called in an eval block *before*
     # the eval is popped

--
Perl5 Master Repository

Reply via email to