From 9616c332956589c86a8366dc42f324108e6b88a4 Mon Sep 17 00:00:00 2001 From: Michael Anthony Knyszek Date: Wed, 3 Dec 2025 22:18:27 +0000 Subject: [PATCH] runtime: don't specify GOEXPERIMENT=greenteagc in goroutine leak tests It's enabled by default, and redundant. It'll just break when we remove the GOEXPERIMENT. Change-Id: Ic6e6a04fc2fe59b3632788c4505dd8f5305813da Reviewed-on: https://go-review.googlesource.com/c/go/+/726523 Auto-Submit: Michael Knyszek LUCI-TryBot-Result: Go LUCI Reviewed-by: Michael Pratt --- src/runtime/goroutineleakprofile_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/goroutineleakprofile_test.go b/src/runtime/goroutineleakprofile_test.go index f5d2dd6372..40c6a4709d 100644 --- a/src/runtime/goroutineleakprofile_test.go +++ b/src/runtime/goroutineleakprofile_test.go @@ -503,7 +503,7 @@ func TestGoroutineLeakProfile(t *testing.T) { cmdEnv := []string{ "GODEBUG=asyncpreemptoff=1", - "GOEXPERIMENT=greenteagc,goroutineleakprofile", + "GOEXPERIMENT=goroutineleakprofile", } if tcase.simple { -- 2.52.0