diff options
Diffstat (limited to 'dist/IO')
-rw-r--r-- | dist/IO/t/cachepropagate-unix.t | 4 |
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(); |