From 0566346d30a2c00cdb255be1b4d8deb11285ab3d Mon Sep 17 00:00:00 2001 From: pierwill <19642016+pierwill@users.noreply.github.com> Date: Mon, 26 Oct 2020 10:35:17 -0700 Subject: [PATCH] docs: Update FUZZ.md --- FUZZ.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) 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`.