From: Andrew Date: Tue, 18 Jun 2019 17:32:04 +0000 (-0400) Subject: doc/go1.13: add release notes for the testing package X-Git-Tag: go1.13beta1~46 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=832959ffcc1d99f8364e75b02d433cb72de63fc1;p=gostls13.git doc/go1.13: add release notes for the testing package Change-Id: I4ddbe22061579383ca47e14d0b64a74365fb3d19 Reviewed-on: https://go-review.googlesource.com/c/go/+/182797 Reviewed-by: Katie Hockman --- diff --git a/doc/go1.13.html b/doc/go1.13.html index 02c0adf32b..5655b06d6c 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -520,15 +520,17 @@ TODO
testing

- TODO: https://golang.org/cl/112155: stop rounding b.N + When running benchmarks, B.N is no longer rounded.

- TODO: https://golang.org/cl/166717: add B.ReportMetric for custom benchmark metrics + The new method B.ReportMetric lets users report + custom benchmark metrics and override built-in metrics.

- TODO: https://golang.org/cl/173722: delay flag registration; move to an Init function + Testing flags are now registered in the new Init function. + As a result, testing flags are now only registered when running a test binary.