build: add test cmd flag -v for verbose logs (#20298)
Adds flags akin to -coverage flag enabling the test runner to use go test's -v flag, signaling verbose test log output.
This commit is contained in:
parent
b02afb6b3d
commit
190fb8180a
@ -318,6 +318,7 @@ func goToolArch(arch string, cc string, subcmd string, args ...string) *exec.Cmd
|
|||||||
|
|
||||||
func doTest(cmdline []string) {
|
func doTest(cmdline []string) {
|
||||||
coverage := flag.Bool("coverage", false, "Whether to record code coverage")
|
coverage := flag.Bool("coverage", false, "Whether to record code coverage")
|
||||||
|
verbose := flag.Bool("v", false, "Whether to log verbosely")
|
||||||
flag.CommandLine.Parse(cmdline)
|
flag.CommandLine.Parse(cmdline)
|
||||||
env := build.Env()
|
env := build.Env()
|
||||||
|
|
||||||
@ -334,6 +335,9 @@ func doTest(cmdline []string) {
|
|||||||
if *coverage {
|
if *coverage {
|
||||||
gotest.Args = append(gotest.Args, "-covermode=atomic", "-cover")
|
gotest.Args = append(gotest.Args, "-covermode=atomic", "-cover")
|
||||||
}
|
}
|
||||||
|
if *verbose {
|
||||||
|
gotest.Args = append(gotest.Args, "-v")
|
||||||
|
}
|
||||||
|
|
||||||
gotest.Args = append(gotest.Args, packages...)
|
gotest.Args = append(gotest.Args, packages...)
|
||||||
build.MustRun(gotest)
|
build.MustRun(gotest)
|
||||||
|
Loading…
Reference in New Issue
Block a user