summaryrefslogtreecommitdiff
path: root/dist/IO
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2012-07-03 17:41:06 +1000
committerTony Cook <tony@develop-help.com>2012-07-03 17:43:24 +1000
commit099fcb99614db013a056694d91f9fb78c3610dd4 (patch)
treeb9f648a917d66ed0f46a732dfccda9aa5b0fe48d /dist/IO
parent5e5bb7c430ddda7286d8b2b2dadc8ddc1489f7ed (diff)
downloadperl-099fcb99614db013a056694d91f9fb78c3610dd4.tar.gz
[rt.cpan.org #61577] VMS doesn't support UNIX sockets
A casual reading of t/io_unix.t might lead you to believe it might, but VMS also doesn't support fork, so the io_unix.t tests are skipped anyway.
Diffstat (limited to 'dist/IO')
-rw-r--r--dist/IO/t/cachepropagate-unix.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/IO/t/cachepropagate-unix.t b/dist/IO/t/cachepropagate-unix.t
index c336a73c69..42a8dc8b64 100644
--- a/dist/IO/t/cachepropagate-unix.t
+++ b/dist/IO/t/cachepropagate-unix.t
@@ -12,7 +12,7 @@ use Config;
use Test::More;
plan skip_all => "UNIX domain sockets not implemented on $^O"
- if ($^O =~ m/^(?:qnx|nto|vos|MSWin32)$/);
+ if ($^O =~ m/^(?:qnx|nto|vos|MSWin32|VMS)$/);
plan tests => 15;