summaryrefslogtreecommitdiff
path: root/dist/IO
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2020-03-27 14:47:14 +1100
committerTony Cook <tony@develop-help.com>2020-03-27 14:47:14 +1100
commit8442d3dce303cdbedffe7f44cc0917459e8dd187 (patch)
treef4606bda7adb3da7615093c463de477c4f37271d /dist/IO
parentf12bbb761071acfd5663d673ad891ffbb2ffdbd9 (diff)
downloadperl-8442d3dce303cdbedffe7f44cc0917459e8dd187.tar.gz
apparently HP-UX and solaris also don't support SO_PROTOCOL for AF_UNIX
Diffstat (limited to 'dist/IO')
-rw-r--r--dist/IO/t/cachepropagate-unix.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/IO/t/cachepropagate-unix.t b/dist/IO/t/cachepropagate-unix.t
index 8427e9f2fa..cd32392eb1 100644
--- a/dist/IO/t/cachepropagate-unix.t
+++ b/dist/IO/t/cachepropagate-unix.t
@@ -50,7 +50,7 @@ my $p = $listener->protocol();
# This is a TODO instead of a skip so if these ever implement SO_PROTOCOL
# we'll be notified about the passing TODO so the test can be updated.
local $TODO = "$^O doesn't support SO_PROTOCOL on AF_UNIX"
- if $^O =~ /^(netbsd|darwin|cygwin)$/;
+ if $^O =~ /^(netbsd|darwin|cygwin|hpux|solaris)$/;
ok(defined($p), 'protocol defined');
}
my $d = $listener->sockdomain();
@@ -105,7 +105,7 @@ SKIP: {
{
# see comment above
local $TODO = "$^O doesn't support SO_PROTOCOL on AF_UNIX"
- if $^O =~ /^(netbsd|darwin|cygwin)$/;
+ if $^O =~ /^(netbsd|darwin|cygwin|hpux|solaris)$/;
ok(defined($p), 'protocol defined');
}
$d = $listener->sockdomain();