From 6c967c0ad2a23c8824d9be8fef18aaf00d2ff0f4 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Fri, 4 Sep 2015 08:31:43 +1200 Subject: [PATCH] cmd/dist: run more cgo tests on ppc64x Change-Id: I992655bb02690ad95122a9e4c45cbd0948b545a0 Reviewed-on: https://go-review.googlesource.com/14238 Reviewed-by: Ian Lance Taylor --- src/cmd/dist/test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.48.1