2022-11-02 21:05:45 +00:00
|
|
|
//go:build gofuzz
|
2021-07-20 15:24:20 +00:00
|
|
|
// +build gofuzz
|
|
|
|
|
|
|
|
package reference
|
|
|
|
|
|
|
|
// fuzzParseNormalizedNamed implements a fuzzer
|
|
|
|
// that targets ParseNormalizedNamed
|
|
|
|
// Export before building the fuzzer.
|
|
|
|
// nolint:deadcode
|
|
|
|
func fuzzParseNormalizedNamed(data []byte) int {
|
|
|
|
_, _ = ParseNormalizedNamed(string(data))
|
|
|
|
return 1
|
|
|
|
}
|