From: Bryan C. Mills
- TODO: https://go.dev/issue/50332: add -C flag to change directory -
-TODO: CL 448357: cmd/go: print test2json start events
-- TODO: https://go.dev/issue/41583: add go test -skip to skip specific tests -
-
The Go distribution no longer ships with pre-compiled .a
files for most of the packages in GOROOT, now only including
@@ -94,6 +86,25 @@ Do not send CLs removing the interior tags from such phrases.
the GOPATH install targets to unexpectedly remain in effect.)
+ The -i flag is no longer accepted by
+ go build and go test.
+ The flag has been deprecated since Go 1.16.
+
+ The go subcommands now accept
+ -C <dir> to change directory to <dir>
+ before performing the command, which may be useful for scripts that need to
+ execute commands in multiple different modules.
+
+ The go test command now accepts
+ -skip <pattern> to skip tests or subtests
+ matching <pattern>.
+
go version