diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-04-19 20:47:16 +0100 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2011-04-20 14:03:49 +1000 |
commit | 476c37e218c9f95449edad498eaac770dc5acde9 (patch) | |
tree | 1bd2959ca7333e30da8334972d8dabba6ac62dfc | |
parent | 804b5feed5ce753c1ebc35a2561ce8b17140f02c (diff) | |
download | perl-476c37e218c9f95449edad498eaac770dc5acde9.tar.gz |
On Win32, skip the tests added in 011c3814, as alarm can't interrupt select.v5.14.0-RC1
-rw-r--r-- | 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 29fc062f02..2e36a84249 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 |