From 5ca4cc8b9a248cff0a36b2a0ec82adf418c46ea9 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 7 Jun 2022 15:59:50 -0700 Subject: [PATCH] internal: temporarily disable tests so we can land CL 410955 For golang/go#53279. Change-Id: I3e0a502f8f0789ff9920af504ea8c86812bf49a1 Reviewed-on: https://go-review.googlesource.com/c/tools/+/410956 Reviewed-by: Robert Griesemer Run-TryBot: Robert Griesemer gopls-CI: kokoro Reviewed-by: Robert Findley TryBot-Result: Gopher Robot --- internal/lsp/tests/tests.go | 2 ++ internal/typeparams/normalize_test.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/internal/lsp/tests/tests.go b/internal/lsp/tests/tests.go index 8265cf2e9b1..1b5bf4e306b 100644 --- a/internal/lsp/tests/tests.go +++ b/internal/lsp/tests/tests.go @@ -544,6 +544,8 @@ func moveFile(oldpath, newpath string) (err error) { } func Run(t *testing.T, tests Tests, data *Data) { + t.Skip() // re-enable once CL 410955 has landed + t.Helper() checkData(t, data) diff --git a/internal/typeparams/normalize_test.go b/internal/typeparams/normalize_test.go index 5969eee3de0..eec1f641ee5 100644 --- a/internal/typeparams/normalize_test.go +++ b/internal/typeparams/normalize_test.go @@ -17,6 +17,8 @@ import ( ) func TestStructuralTerms(t *testing.T) { + t.Skip() // re-enable once CL 410955 has landed + if !Enabled { t.Skip("typeparams are not enabled") }