Lower retry count to avoid taking a long time to fail when the fuzzer is broken.

Signed-off-by: Keith Rothman <[email protected]>
This commit is contained in:
Keith Rothman
2019-03-06 13:15:48 -08:00
parent 7a57020ce9
commit d7116a86cb
+1 -1
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()