Merge pull request #1844 from alixander/test-name-flag
add test name flag to test report
This commit is contained in:
commit
5117d2b077
1 changed files with 3 additions and 1 deletions
|
|
@ -37,9 +37,11 @@ func main() {
|
||||||
vFlag := false
|
vFlag := false
|
||||||
testCaseFlag := ""
|
testCaseFlag := ""
|
||||||
testSetFlag := ""
|
testSetFlag := ""
|
||||||
|
testNameFlag := ""
|
||||||
cpuProfileFlag := false
|
cpuProfileFlag := false
|
||||||
memProfileFlag := false
|
memProfileFlag := false
|
||||||
flag.BoolVar(&deltaFlag, "delta", false, "Generate the report only for cases that changed.")
|
flag.BoolVar(&deltaFlag, "delta", false, "Generate the report only for cases that changed.")
|
||||||
|
flag.StringVar(&testNameFlag, "test-name", "E2E", "Name of e2e tests. Defaults to E2E")
|
||||||
flag.StringVar(&testSetFlag, "test-set", "", "Only run set of tests matching this string. e.g. regressions")
|
flag.StringVar(&testSetFlag, "test-set", "", "Only run set of tests matching this string. e.g. regressions")
|
||||||
flag.StringVar(&testCaseFlag, "test-case", "", "Only run tests matching this string. e.g. all_shapes")
|
flag.StringVar(&testCaseFlag, "test-case", "", "Only run tests matching this string. e.g. all_shapes")
|
||||||
flag.BoolVar(&cpuProfileFlag, "cpuprofile", false, "Profile test cpu usage. `go tool pprof out/cpu.prof`")
|
flag.BoolVar(&cpuProfileFlag, "cpuprofile", false, "Profile test cpu usage. `go tool pprof out/cpu.prof`")
|
||||||
|
|
@ -52,7 +54,7 @@ func main() {
|
||||||
if vFlag {
|
if vFlag {
|
||||||
vString = "-v"
|
vString = "-v"
|
||||||
}
|
}
|
||||||
testMatchString := fmt.Sprintf("-run=TestE2E/%s/%s", testSetFlag, testCaseFlag)
|
testMatchString := fmt.Sprintf("-run=Test%s/%s/%s", testNameFlag, testSetFlag, testCaseFlag)
|
||||||
|
|
||||||
cpuProfileStr := ""
|
cpuProfileStr := ""
|
||||||
if cpuProfileFlag {
|
if cpuProfileFlag {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue