You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for testing.T.Parallel (http://golang.org/pkg/testing/#T.Parallel)
says it is "to be run in parallel with (and only with) other parallel tests in this
CPU group".
Nothing on golang.org says what a "CPU group" is or how one determines which
tests are in it.
(https://www.google.com/search?q=";CPU+group"+site%3Agolang.org
The text was updated successfully, but these errors were encountered:
When it says "CPU group" it means the group of tests that are running on a particular
number of CPUs. It's relevant when you specify -test.cpus=1,2,4,8 and such to "go
test." It looks like the documentation for "go test" and package "testing" omit the
flags, but you can see the flag here:
http://golang.org/src/pkg/testing/testing.go#L109
The text was updated successfully, but these errors were encountered: