Compare commits

...

2 Commits

Author SHA1 Message Date
Yakov Olkhovskiy
41279ca59b test timeout to 10800 2024-11-21 14:59:07 +00:00
Yakov Olkhovskiy
c0a6cc14fd test timeout to 7200 2024-11-21 12:53:24 +00:00
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=5400,
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: