From: Michael Anthony Knyszek Date: Wed, 3 Dec 2025 22:18:27 +0000 (+0000) Subject: runtime: don't specify GOEXPERIMENT=greenteagc in goroutine leak tests X-Git-Tag: go1.26rc1~2^2~10 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9616c332956589c86a8366dc42f324108e6b88a4;p=gostls13.git 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 --- 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 {