Update ideal_integration.md

This commit is contained in:
Kostya Serebryany 2017-08-03 18:45:10 -07:00 committed by GitHub
parent 0337a0ebc6
commit dfacec43a8
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ Examples:
## Regression Testing ## Regression Testing
The fuzz targets should be regularly tested (not necessarily fuzzed!) as a part of the project's regression testing process. The fuzz targets should be regularly tested (not necessarily fuzzed!) as a part of the project's regression testing process.
One way to do so is to link the fuzz target with a simple driver One way to do so is to link the fuzz target with a simple standalone driver
(e.g. [this one](https://github.com/llvm-mirror/llvm/tree/master/lib/Fuzzer/standalone)) (e.g. [this one](https://github.com/llvm-mirror/llvm/tree/master/lib/Fuzzer/standalone))
that runs the provided inputs and use this driver with the seed corpus created in previous step. that runs the provided inputs and use this driver with the seed corpus created in previous step.
It is recommended to use [sanitizers](https://github.com/google/sanitizers) during regression testing. It is recommended to use [sanitizers](https://github.com/google/sanitizers) during regression testing.