mirror of https://github.com/openXC7/prjxray.git
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:
parent
7a57020ce9
commit
d7116a86cb
|
|
@ -346,7 +346,7 @@ def main(argv):
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--retries",
|
"--retries",
|
||||||
type=int,
|
type=int,
|
||||||
default=5,
|
default=2,
|
||||||
help="Retry a failed fuzzer n times.",
|
help="Retry a failed fuzzer n times.",
|
||||||
)
|
)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue