Skip to content

Commit bd0c32c

Browse files
committed
tsnet: disable TestLoopbackSOCKS5 on Windows
This test is not regularly passing on CI, but seems to pass reliably locally. Needs deeper debugging. Updates tailscale#7876 Signed-off-by: James Tucker <jftucker@gmail.com>
1 parent b7f51a1 commit bd0c32c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tsnet/tsnet_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424
"net/netip"
2525
"os"
2626
"path/filepath"
27+
"runtime"
2728
"strings"
2829
"sync"
2930
"testing"
@@ -356,6 +357,10 @@ func TestLoopbackLocalAPI(t *testing.T) {
356357
}
357358

358359
func TestLoopbackSOCKS5(t *testing.T) {
360+
if runtime.GOOS == "windows" {
361+
t.Skip("TODO(#7876): test regressed on windows while CI was broken")
362+
}
363+
359364
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
360365
defer cancel()
361366

0 commit comments

Comments
 (0)