From 911501bfb50406689b1fbd0f739545812ad56b14 Mon Sep 17 00:00:00 2001 From: Rob Findley Date: Mon, 23 Nov 2020 19:35:42 -0500 Subject: [PATCH] gopls/internal/regtest: skip regtests for openbsd-amd64-64 on TryBots This build is suddenly timing out with high frequency. This requires investigation, but for now we must get builds passing again. For golang/go#42789 Change-Id: I51dc5eab227cfb77cd3021438f1b161b21f69caf Reviewed-on: https://go-review.googlesource.com/c/tools/+/272687 Run-TryBot: Robert Findley Trust: Robert Findley Reviewed-by: Rebecca Stambler gopls-CI: kokoro TryBot-Result: Go Bot --- gopls/internal/regtest/runner.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gopls/internal/regtest/runner.go b/gopls/internal/regtest/runner.go index 6ec6ed19518..3454df486bc 100644 --- a/gopls/internal/regtest/runner.go +++ b/gopls/internal/regtest/runner.go @@ -232,6 +232,10 @@ type TestFunc func(t *testing.T, env *Env) func (r *Runner) Run(t *testing.T, files string, test TestFunc, opts ...RunOption) { t.Helper() + if os.Getenv("GO_BUILDER_NAME") == "openbsd-amd64-64" && testing.Short() { + t.Skip("Skipping openbsd-amd64-64 due to golang.org/issues/42789.") + } + tests := []struct { name string mode Mode