diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 779140f446..b56289d854 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -420,8 +420,10 @@ func (t *tester) registerTests() { break } - // Darwin/Android ARM64 fails with internal linking. - if (t.goos == "darwin" || t.goos == "android") && t.goarch == "arm64" { + // Internally linking cgo is incomplete on some architectures. + // https://golang.org/issue/10373 + // https://golang.org/issue/14449 + if t.goarch == "arm64" || t.goarch == "mips64" { break }