diff --git a/FUZZ.md b/FUZZ.md index e3282ddbc6..e938011579 100644 --- a/FUZZ.md +++ b/FUZZ.md @@ -1,12 +1,5 @@ # Fuzzing InfluxDB -## Continuous fuzzing - -The InfluxDB repository contains testing targets for InfluxDB's integration with -[OSS-Fuzz](https://google.github.io/oss-fuzz/). - -The build scripts for this integration are maintained [in the OSS-Fuzz repo](https://github.com/google/oss-fuzz/tree/master/projects/influxdb). - ## Local fuzzing For local fuzzing, install [go-fuzz](https://github.com/dvyukov/go-fuzz): @@ -15,6 +8,8 @@ For local fuzzing, install [go-fuzz](https://github.com/dvyukov/go-fuzz): $ go get -u github.com/dvyukov/go-fuzz/go-fuzz github.com/dvyukov/go-fuzz/go-fuzz-build ``` +For writing fuzz tests, see the [go-fuzz README](https://github.com/dvyukov/go-fuzz). + Below is an example of building and running a fuzz test. In this case, the test is located at `./jsonweb/fuzz.go`.