Commit 4c83d291 authored by David Crawshaw's avatar David Crawshaw

cmd/dist: disable test of internal PIE linking

Updates #17068

Change-Id: I61b75ec07ca8705a678677d262e11b16848cddf3
Reviewed-on: https://go-review.googlesource.com/29079
Run-TryBot: David Crawshaw <crawshaw@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarMichael Hudson-Doyle <michael.hudson@canonical.com>
parent 6758eedf
......@@ -423,7 +423,8 @@ func (t *tester) registerTests() {
}
// Test internal linking of PIE binaries where it is supported.
if t.goos == "linux" && t.goarch == "amd64" {
// TODO(crawshaw): enable when golang.org/issue/17068 is resolved
if false && t.goos == "linux" && t.goarch == "amd64" {
t.tests = append(t.tests, distTest{
name: "pie_internal",
heading: "internal linking of -buildmode=pie",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment