Allows users to disable exit reports. Motivated by
https://github.com/google/oss-fuzz/pull/1314.
Details
Details
- Reviewers
kcc vitalybuka
Diff Detail
Diff Detail
- Build Status
Buildable 17145 Build 17145: arc lint + arc unit
Event Timeline
Comment Actions
This was motivated by conversation regarding wget on OSS-Fuzz: https://github.com/google/oss-fuzz/pull/1314.
There, Tim Ruhsen mentioned he's getting exit reports and doesn't want them since wget calls exit frequently.
Comment Actions
libFuzzer is in-process fuzzer, exit is not a libFuzzer-friendly thing.
I am reluctant to allow exits even under a flag -- it will discourage people from making their APIs more fuzzable.
For legacy code that nobody is willing to change we have the out-of-process AFL