@@ -496,10 +496,10 @@ def main() -> None:
496496
497497 parser .add_argument ('-c' ,'--comparator' , help = 'Choose a comparator' , default = 'gdb' )
498498 base_arg_group .add_argument ('-ba' ,'--base-args' , help = 'Base executable args' , default = "" , nargs = '+' )
499- base_arg_group .add_argument ('-bpid' ,'--base-processid' , help = 'Base process ID' , default = None )
499+ # base_arg_group.add_argument('-bpid','--base-processid', help='Base process ID', default=None)
500500 parser .add_argument ('-bs' ,'--base-script-path' , help = 'Base preliminary script file path' , default = None , nargs = '+' )
501501 regressed_arg_group .add_argument ('-ra' ,'--regression-args' , help = 'Regression executable args' , default = "" , nargs = '+' )
502- regressed_arg_group .add_argument ('-rpid' ,'--regression-processid' , help = 'Regression process ID' , default = None )
502+ # regressed_arg_group.add_argument('-rpid','--regression-processid', help='Regression process ID', default=None)
503503 parser .add_argument ('-rs' ,'--regression-script-path' , help = 'Regression preliminary script file path' , default = None , nargs = '+' )
504504 parser .add_argument ('-r' ,'--remote_host' , help = 'The host of the remote server' , default = 'localhost' )
505505 parser .add_argument ('-p' ,'--platform' , help = 'The platform of the remote server: macosx, linux' , default = 'linux' )
@@ -511,10 +511,10 @@ def main() -> None:
511511
512512 comparator = args ['comparator' ]
513513 ba = ' ' .join (args ['base_args' ])
514- bpid = args ['base_processid' ]
514+ bpid = None # args['base_processid']
515515 bs = ' ' .join (args ['base_script_path' ]) if args ['base_script_path' ] is not None else None
516516 ra = ' ' .join (args ['regression_args' ])
517- rpid = args ['regression_processid' ]
517+ rpid = None # args['regression_processid']
518518 rs = ' ' .join (args ['regression_script_path' ]) if args ["regression_script_path" ] is not None else None
519519 base_only = False
520520
0 commit comments