Skip to content

Commit

Permalink
internal/vulncheck/internal/buildinfo: skip failing tests
Browse files Browse the repository at this point in the history
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 <gobot@golang.org>
Reviewed-by: Heschi Kreinick <heschi@google.com>
Run-TryBot: Jonathan Amsterdam <jba@google.com>
  • Loading branch information
jba committed Jul 24, 2023
1 parent 1568f33 commit 3233c5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions internal/vulncheck/internal/gosym/additions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 3233c5e

Please sign in to comment.