Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions perl/t/02-unix_domain_socket.t
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down