From: Alberto Donizetti Date: Wed, 7 Jun 2017 08:54:52 +0000 (+0200) Subject: doc: list testing package changes in 1.9 release notes X-Git-Tag: go1.9beta1~89 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7be15861f91e53b275b89faee16a315f0a88555d;p=gostls13.git doc: list testing package changes in 1.9 release notes Updates #20587 Change-Id: I39f7c43a13c887d9d563c108d3575db7f2dffe0e Reviewed-on: https://go-review.googlesource.com/45050 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go1.9.html b/doc/go1.9.html index 5ed80c3875..34c0ea2bc8 100644 --- a/doc/go1.9.html +++ b/doc/go1.9.html @@ -106,6 +106,16 @@ type T1 = T2 environment variable GO19CONCURRENTCOMPILATION to 0.

+

Go test

+ +

+ The go test + command accepts a new -list flag, which takes a regular + expression as an argument and prints to stdout the name of any + tests, benchmarks, or examples that match it, without running them. +

+ + @@ -558,18 +568,14 @@ type T1 = T2 -
testing
-
-

- TODO: https://golang.org/cl/41195: add argument to list tests, benchmarks, and examples -

- -
testing/quick

- TODO: https://golang.org/cl/39152: generate all possible int64, uint64 values + The package now chooses values in the full range when + generating int64 and uint64 random + numbers; in earlier releases generated values were always + limited to the [-262, 262) range.