File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -447,12 +447,22 @@ async def main():
447
447
help = "do not start gmp_server.py, assume already running" ,
448
448
action = "store_true" ,
449
449
)
450
+ # TODO: is it stupid taking this from both args and env?
451
+ # ap.add_argument(
452
+ # "--num-test-loops",
453
+ # help="number of UScript test mutator test loops to run, "
454
+ # "WARNING: running too many test loops can cause the"
455
+ # "test mutator to hang forever, default %(default)s",
456
+ # type=int,
457
+ # default=defaults.FCRYPTO_NUM_TEST_LOOPS,
458
+ # )
450
459
451
460
args = ap .parse_args ()
452
461
progress_bar = not args .no_progress_bar
453
462
add_fw_rules = args .add_fw_rules
454
463
gmp_server_path = Path (args .gmp_server_path ).resolve ()
455
464
no_gmp_server = args .no_gmp_server
465
+ # num_test_loops = args.num_test_loops
456
466
457
467
hard_reset = False
458
468
cache = Cache ()
You can’t perform that action at this time.
0 commit comments