From bd0c32ca210a0d31b19af4734cfcaf890898bbd1 Mon Sep 17 00:00:00 2001 From: James Tucker Date: Fri, 14 Apr 2023 21:37:33 -0700 Subject: [PATCH] tsnet: disable TestLoopbackSOCKS5 on Windows This test is not regularly passing on CI, but seems to pass reliably locally. Needs deeper debugging. Updates #7876 Signed-off-by: James Tucker --- tsnet/tsnet_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tsnet/tsnet_test.go b/tsnet/tsnet_test.go index 8de731726..5ab270994 100644 --- a/tsnet/tsnet_test.go +++ b/tsnet/tsnet_test.go @@ -24,6 +24,7 @@ import ( "net/netip" "os" "path/filepath" + "runtime" "strings" "sync" "testing" @@ -356,6 +357,10 @@ func TestLoopbackLocalAPI(t *testing.T) { } func TestLoopbackSOCKS5(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("TODO(#7876): test regressed on windows while CI was broken") + } + ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel()