From 7f583a4d721c94967fe3ce098b3eff902cba043b Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Tue, 13 Sep 2016 19:19:36 -0400 Subject: [PATCH] cmd/dist: re-enable internal PIE test For #17068 Change-Id: I4e3ab166f08100292b779b651a9acfbfb44a55cd Reviewed-on: https://go-review.googlesource.com/29119 Run-TryBot: David Crawshaw TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- src/cmd/dist/test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index dbb30fe990..a3c565967f 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -423,8 +423,7 @@ func (t *tester) registerTests() { } // Test internal linking of PIE binaries where it is supported. - // TODO(crawshaw): enable when golang.org/issue/17068 is resolved - if false && t.goos == "linux" && t.goarch == "amd64" { + if t.goos == "linux" && t.goarch == "amd64" { t.tests = append(t.tests, distTest{ name: "pie_internal", heading: "internal linking of -buildmode=pie", -- 2.48.1