Commit 6c967c0a authored by Michael Hudson-Doyle's avatar Michael Hudson-Doyle

cmd/dist: run more cgo tests on ppc64x

Change-Id: I992655bb02690ad95122a9e4c45cbd0948b545a0
Reviewed-on: https://go-review.googlesource.com/14238Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent c155e590
...@@ -547,7 +547,7 @@ func (t *tester) extLink() bool { ...@@ -547,7 +547,7 @@ func (t *tester) extLink() bool {
"darwin-arm", "darwin-arm64", "darwin-arm", "darwin-arm64",
"dragonfly-386", "dragonfly-amd64", "dragonfly-386", "dragonfly-amd64",
"freebsd-386", "freebsd-amd64", "freebsd-arm", "freebsd-386", "freebsd-amd64", "freebsd-arm",
"linux-386", "linux-amd64", "linux-arm", "linux-arm64", "linux-386", "linux-amd64", "linux-arm", "linux-arm64", "linux-ppc64le",
"netbsd-386", "netbsd-amd64", "netbsd-386", "netbsd-amd64",
"openbsd-386", "openbsd-amd64", "openbsd-386", "openbsd-amd64",
"windows-386", "windows-amd64": "windows-386", "windows-amd64":
...@@ -741,7 +741,7 @@ func (t *tester) cgoTestSOSupported() bool { ...@@ -741,7 +741,7 @@ func (t *tester) cgoTestSOSupported() bool {
// No exec facility on Android or iOS. // No exec facility on Android or iOS.
return false return false
} }
if t.goarch == "ppc64le" || t.goarch == "ppc64" { if t.goarch == "ppc64" {
// External linking not implemented on ppc64 (issue #8912). // External linking not implemented on ppc64 (issue #8912).
return false return false
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment