From: David Crawshaw Date: Tue, 13 Sep 2016 23:19:36 +0000 (-0400) Subject: cmd/dist: re-enable internal PIE test X-Git-Tag: go1.8beta1~1334 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7f583a4d721c94967fe3ce098b3eff902cba043b;p=gostls13.git 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 --- 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",