From: Bryan C. Mills Date: Tue, 22 Sep 2020 01:50:37 +0000 (-0400) Subject: doc/go1.16: add subheads and adjust formatting in the 'Go command' section X-Git-Tag: go1.16beta1~969 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4e1d812afc2ebe767face21f34e47de57f3f32a6;p=gostls13.git doc/go1.16: add subheads and adjust formatting in the 'Go command' section Change-Id: I5f70684d4033d8b11e1cce89268d8222ed596c67 Reviewed-on: https://go-review.googlesource.com/c/go/+/256400 Trust: Bryan C. Mills Run-TryBot: Bryan C. Mills TryBot-Result: Go Bot Reviewed-by: Jay Conrod Reviewed-by: Michael Matloob --- diff --git a/doc/go1.16.html b/doc/go1.16.html index 0167030ef8..63ce61b452 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -43,6 +43,8 @@ Do not send CLs removing the interior tags from such phrases.

Go command

+

Modules

+

go install now accepts arguments with version suffixes (for example, go install @@ -64,12 +66,14 @@ Do not send CLs removing the interior tags from such phrases. TODO: write and link to tutorial or blog post

+

go test

+

- When using go test, a test that + When using go test, a test that calls os.Exit(0) during execution of a test function will now be considered to fail. This will help catch cases in which a test calls code that calls - os.Exit(0) and thereby stops running all future tests. + os.Exit(0) and thereby stops running all future tests. If a TestMain function calls os.Exit(0) that is still considered to be a passing test.