Skip to content

Commit 2cc1836

Browse files
author
Bryan C. Mills
committed
cmd/callgraph: skip TestCallgraph on the windows-arm64-10 builder
We don't know whether this failure is due to a Go bug or a platform bug, so we'll skip it on the one builder to reduce noise, but not the GOOS/GOARCH as a whole. If we do not observe failures on other windows/arm64 builders, we can perhaps chalk it up to a platform bug. If we do observe failures on other builders, then we'll have more data to investigate with. For golang/go#50706 Change-Id: I52511dd4a5cff80953823d9cf901975ff4657457 Reviewed-on: https://go-review.googlesource.com/c/tools/+/379734 Trust: Bryan Mills <[email protected]> Reviewed-by: Daniel Martí <[email protected]> Trust: Daniel Martí <[email protected]>
1 parent 135972e commit 2cc1836

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cmd/callgraph/main_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ func init() {
3434
}
3535

3636
func TestCallgraph(t *testing.T) {
37+
if b := os.Getenv("GO_BUILDER_NAME"); b == "windows-arm64-10" {
38+
t.Skipf("skipping due to suspected file corruption bug on %s builder (https://go.dev/issue/50706)", b)
39+
}
40+
3741
testenv.NeedsTool(t, "go")
3842

3943
gopath, err := filepath.Abs("testdata")

0 commit comments

Comments
 (0)