Skip to content

Commit

Permalink
cmd/dist: actually disable testso and testsovar on ppc64
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
mwhudson authored and bradfitz committed Jul 13, 2015
1 parent 8a28242 commit 616cb3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/dist/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ func (t *tester) cgoTestSOSupported() bool {
// No exec facility on Android or iOS.
return false
}
if t.goos == "ppc64le" || t.goos == "ppc64" {
if t.goarch == "ppc64le" || t.goarch == "ppc64" {
// External linking not implemented on ppc64 (issue #8912).
return false
}
Expand Down

0 comments on commit 616cb3c

Please sign in to comment.