aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_cgo_test.go
diff options
context:
space:
mode:
authorClément Chigot <clement.chigot@atos.net>2019-02-21 10:45:40 +0100
committerIan Lance Taylor <iant@golang.org>2019-03-19 04:35:33 +0000
commitd24d25b4e43badc38539b563f5264b341ccf3746 (patch)
tree374aed5b9d47e7ef8a6d1ac870c490d03a3a62cf /src/runtime/crash_cgo_test.go
parentd227a0811b76791fad04eeba35cf2794a719d610 (diff)
downloadgo-d24d25b4e43badc38539b563f5264b341ccf3746.tar.gz
go-d24d25b4e43badc38539b563f5264b341ccf3746.zip
runtime: enable external linker tests for aix/ppc64
Change-Id: Icc42843adb15c2aba1cfea854fad049c6704344b Reviewed-on: https://go-review.googlesource.com/c/go/+/164014 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime/crash_cgo_test.go')
-rw-r--r--src/runtime/crash_cgo_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go
index e0c8955e7d..07eba78c8a 100644
--- a/src/runtime/crash_cgo_test.go
+++ b/src/runtime/crash_cgo_test.go
@@ -90,9 +90,9 @@ func TestCgoExternalThreadSIGPROF(t *testing.T) {
case "plan9", "windows":
t.Skipf("no pthreads on %s", runtime.GOOS)
}
- if runtime.GOARCH == "ppc64" {
+ if runtime.GOARCH == "ppc64" && runtime.GOOS == "linux" {
// TODO(austin) External linking not implemented on
- // ppc64 (issue #8912)
+ // linux/ppc64 (issue #8912)
t.Skipf("no external linking on ppc64")
}