1
0
mirror of https://github.com/golang/go synced 2024-11-20 10:34:42 -07:00

cmd/dist: actually disable testso and testsovar on ppc64

This is clearly what was intended all along. ./all.bash passes with this
change.

Change-Id: I16996da11cf1e4d2dc2a4434b7611a724691e8dc
Reviewed-on: https://go-review.googlesource.com/12068
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Michael Hudson-Doyle 2015-07-13 15:20:12 +12:00 committed by Brad Fitzpatrick
parent 8a28242b5f
commit 616cb3c0ea

View File

@ -734,7 +734,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.goos == "ppc64le" || t.goos == "ppc64" { if t.goarch == "ppc64le" || t.goarch == "ppc64" {
// External linking not implemented on ppc64 (issue #8912). // External linking not implemented on ppc64 (issue #8912).
return false return false
} }