mirror of https://github.com/golang/go.git
[dev.fuzz] testing: fix documentation for fuzzminimizetime
This removes redundancy for the default value. Fixes #46555 Change-Id: Ib62bd2d584ef82bef806d0fe2ce59957488e469e Reviewed-on: https://go-review.googlesource.com/c/go/+/325070 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org>
This commit is contained in:
parent
2c98915ac7
commit
b2ff3e82ba
|
|
@ -20,7 +20,7 @@ import (
|
|||
func initFuzzFlags() {
|
||||
matchFuzz = flag.String("test.fuzz", "", "run the fuzz target matching `regexp`")
|
||||
flag.Var(&fuzzDuration, "test.fuzztime", "time to spend fuzzing; default is to run indefinitely")
|
||||
flag.Var(&minimizeDuration, "test.fuzzminimizetime", "time to spend minimizing a value after finding a crash; default is to minimize for 60s")
|
||||
flag.Var(&minimizeDuration, "test.fuzzminimizetime", "time to spend minimizing a value after finding a crash")
|
||||
fuzzCacheDir = flag.String("test.fuzzcachedir", "", "directory where interesting fuzzing inputs are stored")
|
||||
isFuzzWorker = flag.Bool("test.fuzzworker", false, "coordinate with the parent process to fuzz random values")
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue