mirror of https://github.com/google/oss-fuzz.git
[docs] Document FuzzedDataProvider support. (#2547)
* [docs][infra] Add build support for FuzzedDataProvider. * address review comment * document the new FDP location * remove redundant new line
This commit is contained in:
parent
ab591ee25f
commit
a8c21cd243
|
@ -226,6 +226,11 @@ When your build.sh script is executed, the following locations are available wit
|
|||
Although the files layout is fixed within a container, environment variables are
|
||||
provided so you can write retargetable scripts.
|
||||
|
||||
In case your fuzz target uses the [FuzzedDataProvider] class, make sure it is
|
||||
included via `#include <fuzzer/FuzzedDataProvider.h>` directive.
|
||||
|
||||
[FuzzedDataProvider]: https://github.com/google/fuzzing/blob/master/docs/split-inputs.md#fuzzed-data-provider
|
||||
|
||||
### build.sh requirements {#Requirements}
|
||||
|
||||
Only binaries without an extension are accepted as targets. Extensions are reserved for other artifacts, like .dict.
|
||||
|
|
Loading…
Reference in New Issue