diff --git a/projects/goipp/fuzzer/fuzz_decode_bytes.go b/projects/goipp/fuzzer/fuzz_decode_bytes.go index f316bab..5719c0a 100644 --- a/projects/goipp/fuzzer/fuzz_decode_bytes.go +++ b/projects/goipp/fuzzer/fuzz_decode_bytes.go @@ -1,5 +1,5 @@ /* - * Fuzz target for goipp's `DecodeBytes` function. + * Fuzz target for goipp's DecodeBytes function. */ @@ -10,7 +10,7 @@ import ( "github.com/OpenPrinting/goipp" ) -func FuzzDecodeBytes(f *testing.F) { +func FuzzDecBytes(f *testing.F) { f.Fuzz(func(t *testing.T, data []byte) { var m goipp.Message if err := m.DecodeBytes(data); err != nil { diff --git a/projects/goipp/oss_fuzz_build.sh b/projects/goipp/oss_fuzz_build.sh index 9636779..0d954ca 100644 --- a/projects/goipp/oss_fuzz_build.sh +++ b/projects/goipp/oss_fuzz_build.sh @@ -31,7 +31,7 @@ go mod tidy go install github.com/AdamKorcz/go-118-fuzz-build@latest go get github.com/AdamKorcz/go-118-fuzz-build/testing -compile_native_go_fuzzer ./fuzzer FuzzDecodeBytes fuzz_decode_bytes +compile_native_go_fuzzer ./fuzzer FuzzDecBytes fuzz_decode_bytes compile_native_go_fuzzer ./fuzzer FuzzDecodeBytesEx fuzz_decode_bytes_ex compile_native_go_fuzzer ./fuzzer FuzzRoundTrip fuzz_round_trip compile_native_go_fuzzer ./fuzzer FuzzCollections fuzz_collections