From 3233c5e76ec42359d323ed4df694a3cade5860bd Mon Sep 17 00:00:00 2001 From: Jonathan Amsterdam Date: Mon, 24 Jul 2023 07:47:18 -0400 Subject: [PATCH] internal/vulncheck/internal/buildinfo: skip failing tests Skip tests that are failing on builders until the underlying issues can be resolved. Updates #61511. Change-Id: I8f8202c4b297881e6c1fc789bfbc9ac261848567 Reviewed-on: https://go-review.googlesource.com/c/vuln/+/512435 TryBot-Result: Gopher Robot Reviewed-by: Heschi Kreinick Run-TryBot: Jonathan Amsterdam --- internal/vulncheck/internal/buildinfo/additions_scan_test.go | 1 + internal/vulncheck/internal/gosym/additions_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/internal/vulncheck/internal/buildinfo/additions_scan_test.go b/internal/vulncheck/internal/buildinfo/additions_scan_test.go index 411e377b..0948d486 100644 --- a/internal/vulncheck/internal/buildinfo/additions_scan_test.go +++ b/internal/vulncheck/internal/buildinfo/additions_scan_test.go @@ -94,6 +94,7 @@ func TestStrippedBinary(t *testing.T) { // is complete on darwin even in the presence of stripping. // This test will become obsolete once #61051 is addressed. func TestStrippedDarwin(t *testing.T) { + t.Skip("to temporarily resolve #61511") testAll(t, []string{"darwin"}, []string{"amd64", "386", "arm", "arm64"}, func(t *testing.T, goos, goarch string) { binary, done := test.GoBuild(t, "testdata", "", true, "GOOS", goos, "GOARCH", goarch) diff --git a/internal/vulncheck/internal/gosym/additions_test.go b/internal/vulncheck/internal/gosym/additions_test.go index b922e02f..3bc87e75 100644 --- a/internal/vulncheck/internal/gosym/additions_test.go +++ b/internal/vulncheck/internal/gosym/additions_test.go @@ -32,6 +32,7 @@ func TestFuncSymName(t *testing.T) { } func TestInlineTree(t *testing.T) { + t.Skip("to temporarily resolve #61511") pclinetestBinary, cleanup := dotest(t) defer cleanup()