You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
If target_options contains the Libfuzzer -runs=N argument, we will test each randomly-selected input N times. We should expect values of N ranging 10k (for very leaky targets), to much higher.
We stopped passing -runs=N to the non-fuzzing tasks in thelibfuzzer basic template in #1610, but this doesn't fix our re-use of target_options for both fuzzing and input-testing in the verify() stage of libfuzzer_fuzz.
The text was updated successfully, but these errors were encountered:
The
LibFuzzer
wrapper has averify()
method for validating that a fuzzer doesn't crash against a corpus.In the
libfuzzer_fuzz
task, we invoke it here.If
target_options
contains the Libfuzzer-runs=N
argument, we will test each randomly-selected inputN
times. We should expect values ofN
ranging 10k (for very leaky targets), to much higher.We stopped passing
-runs=N
to the non-fuzzing tasks in thelibfuzzer basic
template in #1610, but this doesn't fix our re-use oftarget_options
for both fuzzing and input-testing in theverify()
stage oflibfuzzer_fuzz
.The text was updated successfully, but these errors were encountered: