Commit 25858cce authored by Ian Lance Taylor's avatar Ian Lance Taylor

cmd/go: add -test to go list usage line

Change-Id: Ia57f0ef1a3bdeb06346e175d67979e2a4512622d
Reviewed-on: https://go-review.googlesource.com/112160
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 5b976d37
...@@ -579,7 +579,7 @@ ...@@ -579,7 +579,7 @@
// //
// Usage: // Usage:
// //
// go list [-deps] [-e] [-f format] [-json] [build flags] [packages] // go list [-deps] [-e] [-f format] [-json] [-test] [build flags] [packages]
// //
// List lists the packages named by the import paths, one per line. // List lists the packages named by the import paths, one per line.
// //
......
...@@ -23,7 +23,7 @@ import ( ...@@ -23,7 +23,7 @@ import (
) )
var CmdList = &base.Command{ var CmdList = &base.Command{
UsageLine: "list [-deps] [-e] [-f format] [-json] [build flags] [packages]", UsageLine: "list [-deps] [-e] [-f format] [-json] [-test] [build flags] [packages]",
Short: "list packages", Short: "list packages",
Long: ` Long: `
List lists the packages named by the import paths, one per line. List lists the packages named by the import paths, one per line.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment