From: Keith Randall Date: Wed, 11 May 2022 05:45:42 +0000 (+0000) Subject: Revert "testing: document -race goroutine limits" X-Git-Tag: go1.19beta1~305 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=de9805c702bcc19bcf3c783d1c2e43fdf4e1d30e;p=gostls13.git Revert "testing: document -race goroutine limits" This reverts commit 4907c62f99fbfc8608a79a17c20d89f50956d9fc. Reason for revert: Race detector v3, which we just upgraded to, no longer has a goroutine limit. (small caveat: openbsd/amd64 can't be updated, windows/amd64 isn't updated yet but should be by release time.) Change-Id: I90017834501e81d3990d888f1b2baf3432452846 Reviewed-on: https://go-review.googlesource.com/c/go/+/405595 TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov Reviewed-by: Keith Randall Run-TryBot: Keith Randall Auto-Submit: Keith Randall Reviewed-by: Rob Pike --- diff --git a/src/testing/testing.go b/src/testing/testing.go index 1f701e0b21..ec2d864822 100644 --- a/src/testing/testing.go +++ b/src/testing/testing.go @@ -295,9 +295,6 @@ // } // } // -// The race detector kills the program if it exceeds 8128 concurrent goroutines, -// so use care when running parallel tests with the -race flag set. -// // Run does not return until parallel subtests have completed, providing a way // to clean up after a group of parallel tests: //