aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing.go
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2022-05-11 05:45:42 +0000
committerGopher Robot <gobot@golang.org>2022-05-11 13:55:35 +0000
commitde9805c702bcc19bcf3c783d1c2e43fdf4e1d30e (patch)
treec36edef29e2598b083ca781fbf21c08c2b6a3bea /src/testing/testing.go
parent536282763f7357edd81d85993c12fd977fecd378 (diff)
downloadgo-de9805c702bcc19bcf3c783d1c2e43fdf4e1d30e.tar.xz
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 <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>
Diffstat (limited to 'src/testing/testing.go')
-rw-r--r--src/testing/testing.go3
1 files changed, 0 insertions, 3 deletions
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:
//