We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go version
go version go1.16 darwin/amd64
Yes
go env
GOOS="darwin" GOARCH="amd64"
Run a program with -race flag exceeding max number of goroutines
Expected to see a limit of 8192 as pointed out here
go/src/testing/testing.go
Line 193 in dc289d3
race: limit on 8128 simultaneously alive goroutines is exceeded, dying
I don't know whether this number is system-specific or not, but it is exactly 8128 for darwin/amd64 and linux/arm64 at least.
darwin/amd64
linux/arm64
The text was updated successfully, but these errors were encountered:
Change https://golang.org/cl/304254 mentions this issue: testing: update permitted number of -race goroutines
testing: update permitted number of -race goroutines
Sorry, something went wrong.
29ed12d
No branches or pull requests
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Run a program with -race flag exceeding max number of goroutines
What did you expect to see?
Expected to see a limit of 8192 as pointed out here
go/src/testing/testing.go
Line 193 in dc289d3
What did you see instead?
race: limit on 8128 simultaneously alive goroutines is exceeded, dying
I don't know whether this number is system-specific or not, but it is exactly 8128 for
darwin/amd64
andlinux/arm64
at least.The text was updated successfully, but these errors were encountered: