@@ -496,10 +496,10 @@ def main() -> None:
496
496
497
497
parser .add_argument ('-c' ,'--comparator' , help = 'Choose a comparator' , default = 'gdb' )
498
498
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)
500
500
parser .add_argument ('-bs' ,'--base-script-path' , help = 'Base preliminary script file path' , default = None , nargs = '+' )
501
501
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)
503
503
parser .add_argument ('-rs' ,'--regression-script-path' , help = 'Regression preliminary script file path' , default = None , nargs = '+' )
504
504
parser .add_argument ('-r' ,'--remote_host' , help = 'The host of the remote server' , default = 'localhost' )
505
505
parser .add_argument ('-p' ,'--platform' , help = 'The platform of the remote server: macosx, linux' , default = 'linux' )
@@ -511,10 +511,10 @@ def main() -> None:
511
511
512
512
comparator = args ['comparator' ]
513
513
ba = ' ' .join (args ['base_args' ])
514
- bpid = args ['base_processid' ]
514
+ bpid = None # args['base_processid']
515
515
bs = ' ' .join (args ['base_script_path' ]) if args ['base_script_path' ] is not None else None
516
516
ra = ' ' .join (args ['regression_args' ])
517
- rpid = args ['regression_processid' ]
517
+ rpid = None # args['regression_processid']
518
518
rs = ' ' .join (args ['regression_script_path' ]) if args ["regression_script_path" ] is not None else None
519
519
base_only = False
520
520
0 commit comments