]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/dist: disable test of internal PIE linking
authorDavid Crawshaw <crawshaw@golang.org>
Mon, 12 Sep 2016 19:10:04 +0000 (15:10 -0400)
committerDavid Crawshaw <crawshaw@golang.org>
Mon, 12 Sep 2016 21:06:11 +0000 (21:06 +0000)
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>
src/cmd/dist/test.go

index a3c565967fced3f5a4a46894a115ac698b2014ef..dbb30fe990f02803d1c4139edb14137b8a3f2d15 100644 (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",