diff options
| author | Michael Hudson-Doyle <michael.hudson@canonical.com> | 2015-11-12 13:05:49 +1300 |
|---|---|---|
| committer | Michael Hudson-Doyle <michael.hudson@canonical.com> | 2015-11-12 00:30:04 +0000 |
| commit | 58db5fc94d6038aa0308fc36c25b551a751260c2 (patch) | |
| tree | 5c982858901fb11e8d72fca8136dd8eef47a2941 /src/runtime | |
| parent | 4255b78c7da08170321a166d540dfc2c4cfd2ac5 (diff) | |
| download | go-58db5fc94d6038aa0308fc36c25b551a751260c2.tar.xz | |
runtime: run TestCgoExternalThreadSIGPROF on ppc64le
It was disabled because of the lack of external linking.
Change-Id: Iccb4a4ef8c57d048d53deabe4e0f4e6b9dccce33
Reviewed-on: https://go-review.googlesource.com/16797
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime')
| -rw-r--r-- | src/runtime/crash_cgo_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go index 8e23006414..df6c15df69 100644 --- a/src/runtime/crash_cgo_test.go +++ b/src/runtime/crash_cgo_test.go @@ -84,7 +84,7 @@ func TestCgoExternalThreadSIGPROF(t *testing.T) { } } } - if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" { + if runtime.GOARCH == "ppc64" { // TODO(austin) External linking not implemented on // ppc64 (issue #8912) t.Skipf("no external linking on ppc64") |
