mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
Update flag usage text for some of the flags
This commit is contained in:
parent
985100c8e8
commit
9e3af115d3
@ -20,11 +20,11 @@ var (
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
noXMLHeader = flag.Bool("no-xml-header", false, "do not print xml header")
|
noXMLHeader = flag.Bool("no-xml-header", false, "do not print xml header")
|
||||||
packageName = flag.String("package-name", "", "specify a package name (compiled test have no package name in output)")
|
packageName = flag.String("package-name", "", "specify a default package `name` to use if output does not contain a package name")
|
||||||
setExitCode = flag.Bool("set-exit-code", false, "set exit code to 1 if tests failed")
|
setExitCode = flag.Bool("set-exit-code", false, "set exit code to 1 if tests failed")
|
||||||
version = flag.Bool("version", false, "print version")
|
version = flag.Bool("version", false, "print version")
|
||||||
input = flag.String("in", "", "read go test log from file")
|
input = flag.String("in", "", "read go test log from `file`")
|
||||||
output = flag.String("out", "", "write XML report to file")
|
output = flag.String("out", "", "write XML report to `file`")
|
||||||
iocopy = flag.Bool("iocopy", false, "copy input to stdout; can only be used in conjunction with -out")
|
iocopy = flag.Bool("iocopy", false, "copy input to stdout; can only be used in conjunction with -out")
|
||||||
properties = make(keyValueFlag)
|
properties = make(keyValueFlag)
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ var (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Var(&properties, "prop", "add property to generated report; properties should be specified as \"key=value\"")
|
flag.Var(&properties, "prop", "add property to generated report; properties should be specified as `key=value`")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
if *iocopy && *output == "" {
|
if *iocopy && *output == "" {
|
||||||
exitf("you must specify an output file with -out when using -iocopy")
|
exitf("you must specify an output file with -out when using -iocopy")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user