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 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.