]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/dist: run more cgo tests on ppc64x
authorMichael Hudson-Doyle <michael.hudson@canonical.com>
Thu, 3 Sep 2015 20:31:43 +0000 (08:31 +1200)
committerMichael Hudson-Doyle <michael.hudson@canonical.com>
Tue, 10 Nov 2015 01:47:56 +0000 (01:47 +0000)
Change-Id: I992655bb02690ad95122a9e4c45cbd0948b545a0
Reviewed-on: https://go-review.googlesource.com/14238
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/cmd/dist/test.go

index 6b0056a3ae8df1f1695bd316f7e9cd0b39860c74..6fa1036a13d76fdb265eae12bdd594ed258fdd29 100644 (file)
@@ -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
        }