]> Cypherpunks repositories - gostls13.git/commitdiff
Revert "testing: document -race goroutine limits"
authorKeith Randall <khr@golang.org>
Wed, 11 May 2022 05:45:42 +0000 (05:45 +0000)
committerGopher Robot <gobot@golang.org>
Wed, 11 May 2022 13:55:35 +0000 (13:55 +0000)
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 <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Keith Randall <khr@google.com>
Run-TryBot: Keith Randall <khr@golang.org>
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: Rob Pike <r@golang.org>
src/testing/testing.go

index 1f701e0b217b7dd5b2b5ef716027ee23c2e49b40..ec2d864822247ea9501dc78ed6abbf915d6dbf2c 100644 (file)
 //         }
 //     }
 //
-// 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:
 //