-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timeout in pruning job #89
Comments
The duration should come from |
Well, I am not sure which fuzz target times out in the first place. I get
I guess the log should tell me the command which timed out and the timeout it used |
Or at least a file in a corpus that triggered timeout. |
``` File "/usr/local/lib/python3.8/dist-packages/clusterfuzz/_internal/bot/fuzzers/libFuzzer/engine.py", line 507, in minimize_corpus raise TimeoutError('Merging new testcases timed out\n' + result.output) TimeoutError: Merging new testcases timed out ``` See also google/clusterfuzzlite#89
``` File "/usr/local/lib/python3.8/dist-packages/clusterfuzz/_internal/bot/fuzzers/libFuzzer/engine.py", line 507, in minimize_corpus raise TimeoutError('Merging new testcases timed out\n' + result.output) TimeoutError: Merging new testcases timed out ``` The prune duration is come from `FUZZ_SECONDS` // `fuzzers_left_to_run`. The patch increase a prune timeout, it seems due to a huge corpus and a number of fuzzers pruning takes more time and time is not enough. See also google/clusterfuzzlite#89
Getting logs like
Increasing
FUZZ_SECONDS
does not seem to be enough to fix this...But I see
fuzz_seconds // fuzzers_left_to_run
so maybe this fuzzer is a bit long but it should have more time than the others...The text was updated successfully, but these errors were encountered: