From: Brad Fitzpatrick Date: Mon, 23 Jan 2017 22:26:27 +0000 (+0000) Subject: doc: mention testing.MainStart signature change X-Git-Tag: go1.8rc3~1^2~11 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=be9dcfec293854bfb4a13737ba09801769daccbf;p=gostls13.git doc: mention testing.MainStart signature change Fixes #18766 Change-Id: Ic0f72f3b7bbccd0546692993c4ed414f8c88c1c6 Reviewed-on: https://go-review.googlesource.com/35573 Reviewed-by: Russ Cox --- diff --git a/doc/go1.8.html b/doc/go1.8.html index 337f13d630..147221a44e 100644 --- a/doc/go1.8.html +++ b/doc/go1.8.html @@ -1645,6 +1645,17 @@ crypto/x509: return error for missing SerialNumber (CL 27238) and only the overall execution of the test binary would fail.

+

+ The signature of the + MainStart + function has changed, as allowed by the documentation. It is an + internal detail and not part of the Go 1 compatibility promise. + If you're not calling MainStart directly but see + errors, that likely means you set the + normally-empty GOROOT environment variable and it + doesn't match the version of your go command's binary. +

+