From fe62aff31966b9d670230d6dde6b1bb9a7a01143 Mon Sep 17 00:00:00 2001 From: Rob Findley Date: Fri, 21 Feb 2020 10:06:56 -0500 Subject: [PATCH] internal/lsp/regtest: skip flaky TestGoToStdlibDefinition This test is flaking on the Trybots. Skip it until this is understood. Updates golang/go#37318 Change-Id: Ie4c1db47797b88d5eb201a73c4ddfb5481f362ea Reviewed-on: https://go-review.googlesource.com/c/tools/+/220360 Run-TryBot: Robert Findley Reviewed-by: Rohan Challa TryBot-Result: Gobot Gobot --- internal/lsp/regtest/definition_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/lsp/regtest/definition_test.go b/internal/lsp/regtest/definition_test.go index 14a4ea1130..502e7b7ed1 100644 --- a/internal/lsp/regtest/definition_test.go +++ b/internal/lsp/regtest/definition_test.go @@ -63,6 +63,7 @@ func main() { }` func TestGoToStdlibDefinition(t *testing.T) { + t.Skip("skipping due to golang.org/issues/37318") t.Parallel() runner.Run(t, stdlibDefinition, func(ctx context.Context, t *testing.T, env *Env) { env.OpenFile("main.go")