fuzzing: allow setup function to be called (#3175)
This allows to fuzzing of more interesting targets that require setup. Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
parent
59e74eb15d
commit
62451fd3eb
7 changed files with 21 additions and 6 deletions
2
plugin/cache/fuzz.go
vendored
2
plugin/cache/fuzz.go
vendored
|
@ -8,5 +8,5 @@ import (
|
|||
|
||||
// Fuzz fuzzes cache.
|
||||
func Fuzz(data []byte) int {
|
||||
return fuzz.Do(New(), data)
|
||||
return fuzz.Do(New(), nil, data)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue