1
0
mirror of https://github.com/golang/go synced 2024-11-26 15:56:57 -07:00

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: Michael Hudson-Doyle <michael.hudson@canonical.com>
This commit is contained in:
David Crawshaw 2016-09-12 15:10:04 -04:00
parent 6758eedf89
commit 4c83d29144

View File

@ -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",