Skip to content

Commit 37c46c8

Browse files
committed
hack/test-port-forwarding.pl: Skip hostSocket test on Windows host
Signed-off-by: Norio Nomura <[email protected]>
1 parent a739c24 commit 37c46c8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

hack/test-port-forwarding.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@
122122
printf "🚧 Not supported for $instanceType machines: # $_\n";
123123
next;
124124
}
125+
if ($test{host_socket} ne "" && $Config{osname} eq "cygwin") {
126+
printf "🚧 Not supported on $Config{osname}: # $_\n";
127+
next;
128+
}
125129

126130
my $remote = JoinHostPort($test{guest_ip},$test{guest_port});
127131
my $local = $test{host_socket} eq "" ? JoinHostPort($test{host_ip},$test{host_port}) : $test{host_socket};

0 commit comments

Comments
 (0)