From d7116a86cb7ca12eeccee39390889d6d820780f0 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Wed, 6 Mar 2019 13:15:48 -0800 Subject: [PATCH] Lower retry count to avoid taking a long time to fail when the fuzzer is broken. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- fuzzers/run_fuzzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzers/run_fuzzer.py b/fuzzers/run_fuzzer.py index fbf9f362..9982d8d8 100755 --- a/fuzzers/run_fuzzer.py +++ b/fuzzers/run_fuzzer.py @@ -346,7 +346,7 @@ def main(argv): parser.add_argument( "--retries", type=int, - default=5, + default=2, help="Retry a failed fuzzer n times.", ) args = parser.parse_args()