From fa2c70e3118fdf34d09b46953dacdb45cf49f06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Josef=20=C5=A0pa=C4=8Dek?= Date: Wed, 7 Dec 2022 22:50:39 +0100 Subject: [PATCH] Fix unix domain socket tests on Windows There is no support in FCGI for this type of usage. --- perl/t/02-unix_domain_socket.t | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/perl/t/02-unix_domain_socket.t b/perl/t/02-unix_domain_socket.t index 69d093b..f94fe20 100644 --- a/perl/t/02-unix_domain_socket.t +++ b/perl/t/02-unix_domain_socket.t @@ -28,15 +28,7 @@ if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bSocket\b/) { } elsif (! $can_fork) { plan skip_all => 'no fork'; } elsif ($^O eq 'MSWin32') { - if ($ENV{CONTINUOUS_INTEGRATION}) { - # https://github.com/Perl/perl5/issues/17429 - plan skip_all => 'Skipping on Windows CI'; - } else { - # https://github.com/Perl/perl5/issues/17575 - if (! eval { socket(my $sock, PF_UNIX, SOCK_STREAM, 0) }) { - plan skip_all => "AF_UNIX unavailable or disabled on this platform" - } - } + plan skip_all => "FCGI with UNIX domain sockets not implemented on $^O"; } my (undef, $unix_socket_file) = tempfile();