Skip to content

Commit 0eb39ca

Browse files
committed
cmd/dist: enable plugin test on Linux/ARM64
The test was skipped because with the old gold linker on the builder it fails with an internal error in gold. The builders now have gold 2.31 and the test passes. Enable it. Fixes #17138. Change-Id: Ia0054030dd12f1d003c7420bf7ed8b112715baa9 Reviewed-on: https://go-review.googlesource.com/c/go/+/369814 Trust: Cherry Mui <[email protected]> Run-TryBot: Cherry Mui <[email protected]> Reviewed-by: Than McIntosh <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent 6f65d47 commit 0eb39ca

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/cmd/dist/test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,10 +1043,8 @@ func (t *tester) supportedBuildmode(mode string) bool {
10431043
}
10441044
return false
10451045
case "plugin":
1046-
// linux-arm64 is missing because it causes the external linker
1047-
// to crash, see https://golang.org/issue/17138
10481046
switch pair {
1049-
case "linux-386", "linux-amd64", "linux-arm", "linux-s390x", "linux-ppc64le":
1047+
case "linux-386", "linux-amd64", "linux-arm", "linux-arm64", "linux-s390x", "linux-ppc64le":
10501048
return true
10511049
case "darwin-amd64", "darwin-arm64":
10521050
return true

0 commit comments

Comments
 (0)