]> Cypherpunks repositories - gostls13.git/commit
cmd/vet: remove -test flag
authorKonstantin Shaposhnikov <k.shaposhnikov@gmail.com>
Tue, 1 Mar 2016 14:55:06 +0000 (22:55 +0800)
committerRob Pike <r@golang.org>
Mon, 7 Mar 2016 22:54:38 +0000 (22:54 +0000)
commitb8a2e25f55de3ab42a846c08c0002b8d88248bca
treefc20aa8711002a29c740843c76bbcc18d754ba0f
parentbcce5bdabd0c8fba61b700aab15813800b9e9c07
cmd/vet: remove -test flag

-test flag is a testing only flag that enables all vet checks. It was needed
because there was no way to run all vet checks in a single command
invocation. However it is possible to do this now by combining -all and -shadow
flags.

Also a recently added -tests flag is similarly named, having both -test and
-tests can be confusing.

Change-Id: Ie5bacbe0bef5c8409eeace46f16141fa4e782c32
Reviewed-on: https://go-review.googlesource.com/20006
Reviewed-by: Rob Pike <r@golang.org>
Run-TryBot: Rob Pike <r@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/cmd/vet/doc.go
src/cmd/vet/main.go
src/cmd/vet/vet_test.go