cmd/go: go test -help doesn't show test flags in Go 1.12 #30365
Labels
Documentation
FrozenDueToAge
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
It doesn't (go1.11.5 darwin/amd64)
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Run
go test -help
What did you expect to see?
Expected to see the list of all test flags, including those related to profiling, like
-blockprofile
,-cpuprofile
, etc.What did you see instead?
Running
go help test
shows a general description of how test cmd works and has another note in the very end:Indeed,
go help testflag
does contain the information in subject. But I believe it'd be nice for a user to have the reference totestflag
help page in thego test -help
output.go help test
The text was updated successfully, but these errors were encountered: