Skip to content

Commit e6e15ef

Browse files
dmitshurgopherbot
authored andcommitted
internal/buildinfo: stop testing the windows/arm port
The windows/arm port was marked broken and is removed in Go 1.26. For #71671. Fixes #74934. Change-Id: I2e80641fa2cba1a63b482a6ff46e1652a5497835 Reviewed-on: https://go-review.googlesource.com/c/vuln/+/694215 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Roland Shoemaker <[email protected]>
1 parent 8158ec1 commit e6e15ef

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

internal/buildinfo/additions_scan_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ import (
2424
func testAll(t *testing.T, gooss, goarchs []string, ft func(*testing.T, string, string)) {
2525
// unsupported platforms for building Go binaries.
2626
var unsupported = map[string]bool{
27-
"darwin/386": true,
28-
"darwin/arm": true,
27+
"darwin/386": true,
28+
"darwin/arm": true,
29+
"windows/arm": true, // go.dev/issue/71671
2930
}
3031

3132
for _, g := range gooss {

0 commit comments

Comments
 (0)