Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 562 Bytes

FUZZ.md

File metadata and controls

20 lines (14 loc) · 562 Bytes

Fuzzing InfluxDB

Local fuzzing

For local fuzzing, install 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.

Below is an example of building and running a fuzz test. In this case, the test is located at ./jsonweb/fuzz.go.

$ cd go/src/github.com/influxdata/influxdb/jsonweb
$ go-fuzz-build github.com/influxdata/influxdb/v2/jsonweb
$ go-fuzz -bin jsonweb-fuzz.zip