test_all: allow -list-retries to be overridden on the command line
This commit is contained in:
parent
e098924e61
commit
9403bd2990
2 changed files with 4 additions and 0 deletions
|
@ -336,6 +336,9 @@ func (r *Run) Init() {
|
|||
r.cmdLine = []string{"./" + r.BinaryName()}
|
||||
}
|
||||
r.cmdLine = append(r.cmdLine, prefix+"v", prefix+"timeout", timeout.String(), "-remote", r.Remote)
|
||||
if *listRetries > 0 {
|
||||
r.cmdLine = append(r.cmdLine, "-list-retries", fmt.Sprint(*listRetries))
|
||||
}
|
||||
r.try = 1
|
||||
if *verbose {
|
||||
r.cmdLine = append(r.cmdLine, "-verbose")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue