From 7be15861f91e53b275b89faee16a315f0a88555d Mon Sep 17 00:00:00 2001 From: Alberto Donizetti Date: Wed, 7 Jun 2017 10:54:52 +0200 Subject: [PATCH] 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 --- doc/go1.9.html | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) 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.

-- 2.48.1