Skip to content

Commit 7ef6404

Browse files
committed
hack/test-port-forwarding.pl: Skip hostSocket tests on Windows
Because I don't have any Windows environment for debugging. Signed-off-by: Norio Nomura <[email protected]>
1 parent b723249 commit 7ef6404

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
@@ -119,6 +119,10 @@
119119
printf "🚧 Not supported for $instanceType machines: # $_\n";
120120
next;
121121
}
122+
if ($test{host_socket} ne "" && $Config{osname} eq "MSWin32") {
123+
printf "🚧 Not supported on Windows: # $_\n";
124+
next;
125+
}
122126

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

0 commit comments

Comments
 (0)