test timeout to 10800

This commit is contained in:
Yakov Olkhovskiy 2024-11-21 14:59:07 +00:00
parent c0a6cc14fd
commit 41279ca59b
2 changed files with 2 additions and 2 deletions

View File

@ -546,7 +546,7 @@ class CI:
JobNames.LIBFUZZER_TEST: JobConfig(
required_builds=[BuildNames.FUZZERS],
run_by_labels=[Tags.libFuzzer],
timeout=7200,
timeout=10800,
run_command='libfuzzer_test_check.py "$CHECK_NAME"',
runner_type=Runners.FUNC_TESTER,
),

View File

@ -30,7 +30,7 @@ class Stopwatch:
def run_fuzzer(fuzzer: str, timeout: int):
logging.info("Running fuzzer %s...", fuzzer)
logging.info("Running fuzzer %s for %d seconds...", fuzzer, timeout)
seed_corpus_dir = f"{fuzzer}.in"
with Path(seed_corpus_dir) as path: