From 17c88a19bedb673e7054793710c1e49cd9321cab Mon Sep 17 00:00:00 2001 From: Jordan Whited Date: Sat, 3 Aug 2024 15:08:55 -0700 Subject: [PATCH] net/captivedetection: mark TestAllEndpointsAreUpAndReturnExpectedResponse flaky (#13021) Updates #13019 Signed-off-by: Jordan Whited --- net/captivedetection/captivedetection_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/captivedetection/captivedetection_test.go b/net/captivedetection/captivedetection_test.go index 033f14cba..e74273afd 100644 --- a/net/captivedetection/captivedetection_test.go +++ b/net/captivedetection/captivedetection_test.go @@ -9,6 +9,7 @@ import ( "sync" "testing" + "tailscale.com/cmd/testwrapper/flakytest" "tailscale.com/net/netmon" ) @@ -36,6 +37,7 @@ func TestDetectCaptivePortalReturnsFalse(t *testing.T) { } func TestAllEndpointsAreUpAndReturnExpectedResponse(t *testing.T) { + flakytest.Mark(t, "https://github.com/tailscale/tailscale/issues/13019") d := NewDetector(t.Logf) endpoints := availableEndpoints(nil, 0, t.Logf, runtime.GOOS)