]> Cypherpunks repositories - gostls13.git/commit
testing: do not print 'root' benchName during test of package testing
authorRuss Cox <rsc@golang.org>
Fri, 5 Aug 2022 18:30:20 +0000 (14:30 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 16 Aug 2022 14:36:05 +0000 (14:36 +0000)
commitbd3c35e732ba3f4b6cbdf5d661120d11b59794bc
tree8e123e8311256ee3fdbf68021ad2b13759dd01db
parentb565476e2c812f65385595717fff191ac174cab7
testing: do not print 'root' benchName during test of package testing

$ cd $GOROOT/src/testing
$ go test
root
root
root
root
PASS
$

The root prints have been happening since Go 1.14.
There is a test in sub_test.go that calls b.Run directly
with a benchmark named "root", which triggers the print.
Silence them.

Change-Id: I2f0c186f04c6139bc24fab0e91975fcf0a8e80fc
Reviewed-on: https://go-review.googlesource.com/c/go/+/421437
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
src/testing/benchmark.go
src/testing/sub_test.go