blob: 53667f2cd84660526f1f5fd9ebf8d4bff7741fd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// +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)
}
|