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>
This commit is contained in:
Keith Rothman 2019-03-06 13:15:48 -08:00
parent 7a57020ce9
commit d7116a86cb
1 changed files with 1 additions and 1 deletions

View File

@ -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()