coredns/plugin/chaos/fuzz.go
Miek Gieben e08d3335b0
fuzz: revert setup function ()
This can't be used in its current form; revert the entire PR.

Revert "fuzzing: allow setup function to be called ()"

This reverts commit 62451fd3eb.
2019-08-25 19:01:35 +00:00

13 lines
183 B
Go

// +build gofuzz
package chaos
import (
"github.com/coredns/coredns/plugin/pkg/fuzz"
)
// Fuzz fuzzes cache.
func Fuzz(data []byte) int {
c := Chaos{}
return fuzz.Do(c, data)
}