aboutsummaryrefslogtreecommitdiff
path: root/test/inline_testingbloop.go
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2025-03-20 12:16:17 -0400
committerGopher Robot <gobot@golang.org>2025-03-24 11:41:09 -0700
commit5918101d673d601c26f5de880b1fa2c6564fb745 (patch)
tree489e16d67cb626168f6649316c9893db2f471729 /test/inline_testingbloop.go
parentb7f8c2a11058fe266fa5ddd0bc80dbf69b03b172 (diff)
downloadgo-5918101d673d601c26f5de880b1fa2c6564fb745.tar.xz
testing: detect a stopped timer in B.Loop
Currently, if the user stops the timer in a B.Loop benchmark loop, the benchmark will run until it hits the timeout and fails. Fix this by detecting that the timer is stopped and failing the benchmark right away. We avoid making the fast path more expensive for this check by "poisoning" the B.Loop iteration counter when the timer is stopped so that it falls back to the slow path, which can check the timer. This causes b to escape from B.Loop, which is totally harmless because it was already definitely heap-allocated. But it causes the test/inline_testingbloop.go errorcheck test to fail. I don't think the escape messages actually mattered to that test, they just had to be matched. To fix this, we drop the debug level to -m=1, since -m=2 prints a lot of extra information for escaping parameters that we don't want to deal with, and change one error check to allow b to escape. Fixes #72971. Change-Id: I7d4abbb1ec1e096685514536f91ba0d581cca6b7 Reviewed-on: https://go-review.googlesource.com/c/go/+/659657 Auto-Submit: Austin Clements <austin@google.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'test/inline_testingbloop.go')
-rw-r--r--test/inline_testingbloop.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/inline_testingbloop.go b/test/inline_testingbloop.go
index cbdf905993..702a652f56 100644
--- a/test/inline_testingbloop.go
+++ b/test/inline_testingbloop.go
@@ -1,4 +1,4 @@
-// errorcheck -0 -m=2
+// errorcheck -0 -m
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
@@ -15,7 +15,7 @@ func caninline(x int) int { // ERROR "can inline caninline"
return x
}
-func cannotinline(b *testing.B) { // ERROR "b does not escape" "cannot inline cannotinline.*"
+func test(b *testing.B) { // ERROR "leaking param: b"
for i := 0; i < b.N; i++ {
caninline(1) // ERROR "inlining call to caninline"
}