mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2024-12-29 12:17:48 +00:00
f26a9e7e30
An Is prefix implies it returns a boolean. A Check prefix better suggests that it could return an error. Change-Id: I6ffcb32099a944c656c07654c294a0980efb2d0e Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/220338 Reviewed-by: Damien Neil <dneil@google.com> |
||
---|---|---|
.. | ||
jsonfuzz | ||
textfuzz | ||
wirefuzz | ||
oss-fuzz-build.sh | ||
README.md |
Fuzzing
Fuzzing support using go-fuzz.
Basic operation:
$ go install github.com/dvyukov/go-fuzz/go-fuzz github.com/dvyukov/go-fuzz/go-fuzz-build
$ cd internal/fuzz/{fuzzer}
$ GOFUZZ111MODULE=on go-fuzz-build .
$ go-fuzz
OSS-Fuzz
Fuzzers are automatically run by OSS-Fuzz.
The OSS-Fuzz configuration currently builds fuzzers in every directory under internal/fuzz. Only add fuzzers (not support packages) in this directory.
Fuzzing results are available at the OSS-Fuzz console,
under golang-protobuf
.