From fda06c1e04c5f5d06f6e17fe7d26791de36c4bb1 Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Fri, 12 Nov 2021 10:26:50 -0500 Subject: [PATCH] gopls/internal/regtest/diagnostics: skip Test_Issue38211 This test has a high failure rate on the builders. Adding a skip until it is fixed so that we will more easily notice other regressions. For golang/go#44098 Change-Id: I8dcd6b205a5a7876d2a16c54f3c19c1bb0397843 Reviewed-on: https://go-review.googlesource.com/c/tools/+/363614 Trust: Bryan C. Mills Run-TryBot: Bryan C. Mills gopls-CI: kokoro Reviewed-by: Robert Findley TryBot-Result: Go Bot --- gopls/internal/regtest/diagnostics/diagnostics_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gopls/internal/regtest/diagnostics/diagnostics_test.go b/gopls/internal/regtest/diagnostics/diagnostics_test.go index fed2d5941f..6c02213553 100644 --- a/gopls/internal/regtest/diagnostics/diagnostics_test.go +++ b/gopls/internal/regtest/diagnostics/diagnostics_test.go @@ -638,6 +638,8 @@ var ErrHelpWanted error // Test for golang/go#38211. func Test_Issue38211(t *testing.T) { + t.Skipf("Skipping flaky test: https://golang.org/issue/44098") + testenv.NeedsGo1Point(t, 14) const ardanLabs = ` -- go.mod --