This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Skip eintr.t on VMS.
authorCraig A. Berry <craigberry@mac.com>
Sun, 28 Nov 2010 15:59:25 +0000 (09:59 -0600)
committerCraig A. Berry <craigberry@mac.com>
Sun, 28 Nov 2010 15:59:25 +0000 (09:59 -0600)
commit603928ea21886dfb891e73164afc6b81c2793547
tree6891965294a715614a19475ace5f9445fe7ef8e0
parent3eaf69502c5993865935106db7a5beaf16b1819d
Skip eintr.t on VMS.

It's doing select() on a pipe, but only sockets work with select(),
and the read() on a pipe is not interruptible by an alarm.  That's
probably because our pipe implementation is doing mailbox reads at
AST level but the alarm signal is also an AST and can't interrupt
another AST at the same mode.
t/io/eintr.t