From b53000403e21bce1e37bf0b7bcccb56a9a8e514d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 5 Apr 2025 17:15:50 -0600 Subject: [PATCH] [run-fuzzer-tests] Remove duplicate chunksize --- test/fuzzing/run-fuzzer-tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/fuzzing/run-fuzzer-tests.py b/test/fuzzing/run-fuzzer-tests.py index 1e39ed0a2..04b0612a3 100755 --- a/test/fuzzing/run-fuzzer-tests.py +++ b/test/fuzzing/run-fuzzer-tests.py @@ -57,8 +57,7 @@ def main(): fails = 0 batch_index = 0 - # Run in batches of up to 64 files - for chunk in chunkify(files_to_test, 64): + for chunk in chunkify(files_to_test): batch_index += 1 cmd_line = [fuzzer] + chunk output, returncode = run_command(cmd_line)