Skip to content

Commit 01239a0

Browse files
Dont enforce a 25 second timeout. (#4607)
This was requested by chrome. I can't really think of a strong justification for this paternalistic behavior, and I can think of some against it, mainly that it causes CF to behave unlike the user expects. Fixes: b/382207330
1 parent 4cca6fc commit 01239a0

File tree

1 file changed

+1
-1
lines changed
  • src/clusterfuzz/_internal/bot/fuzzers/libFuzzer

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/bot/fuzzers/libFuzzer/fuzzer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def get_arguments(fuzzer_path) -> options.FuzzerArguments:
4242
rss_limit_mb = arguments.get('rss_limit_mb', constructor=int)
4343
timeout = arguments.get('timeout', constructor=int)
4444

45-
if timeout is None or timeout > constants.DEFAULT_TIMEOUT_LIMIT:
45+
if timeout is None:
4646
arguments[constants.TIMEOUT_FLAGNAME] = constants.DEFAULT_TIMEOUT_LIMIT
4747

4848
if not rss_limit_mb and (utils.is_chromium() or

0 commit comments

Comments
 (0)