From: Michael Hudson-Doyle Date: Thu, 3 Sep 2015 20:31:43 +0000 (+1200) Subject: cmd/dist: run more cgo tests on ppc64x X-Git-Tag: go1.6beta1~576 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6c967c0ad2a23c8824d9be8fef18aaf00d2ff0f4;p=gostls13.git cmd/dist: run more cgo tests on ppc64x Change-Id: I992655bb02690ad95122a9e4c45cbd0948b545a0 Reviewed-on: https://go-review.googlesource.com/14238 Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 6b0056a3ae..6fa1036a13 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -547,7 +547,7 @@ func (t *tester) extLink() bool { "darwin-arm", "darwin-arm64", "dragonfly-386", "dragonfly-amd64", "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", "openbsd-386", "openbsd-amd64", "windows-386", "windows-amd64": @@ -741,7 +741,7 @@ func (t *tester) cgoTestSOSupported() bool { // No exec facility on Android or iOS. return false } - if t.goarch == "ppc64le" || t.goarch == "ppc64" { + if t.goarch == "ppc64" { // External linking not implemented on ppc64 (issue #8912). return false }