From d24d25b4e43badc38539b563f5264b341ccf3746 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20Chigot?= Date: Thu, 21 Feb 2019 10:45:40 +0100 Subject: [PATCH] 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 TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- src/runtime/crash_cgo_test.go | 4 ++-- 1 file 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") } -- 2.50.0