diff options
-rwxr-xr-x | ext/IO/lib/IO/t/io_poll.t | 2 | ||||
-rw-r--r-- | vms/test.com | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/IO/lib/IO/t/io_poll.t b/ext/IO/lib/IO/t/io_poll.t index d31ea47f53..8d157b5e6e 100755 --- a/ext/IO/lib/IO/t/io_poll.t +++ b/ext/IO/lib/IO/t/io_poll.t @@ -39,7 +39,7 @@ print "ok 2\n"; $poll->poll(0.1); -if ($^O eq 'MSWin32' || $^O eq 'NetWare') { +if ($^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'VMS') { print "ok 3 # skipped, doesn't work on non-socket fds\n"; print "ok 4 # skipped, doesn't work on non-socket fds\n"; } diff --git a/vms/test.com b/vms/test.com index a7064a9bd3..b7e5eea3b8 100644 --- a/vms/test.com +++ b/vms/test.com @@ -115,7 +115,7 @@ use Config; use File::Spec; @compexcl=('cpp.t'); -@opexcl=('die_exit.t','exec.t','magic.t','stat.t'); +@opexcl=('die_exit.t','exec.t','stat.t'); @exclist=(@compexcl,@libexcl,@opexcl); foreach $file (@exclist) { $skip{$file}++; } |