From 4c83d2914467e670d680b967ec689f8434136188 Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Mon, 12 Sep 2016 15:10:04 -0400 Subject: [PATCH] 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 TryBot-Result: Gobot Gobot Reviewed-by: Michael Hudson-Doyle --- src/cmd/dist/test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index a3c565967f..dbb30fe990 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -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", -- 2.48.1