File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ def __init__(self, ns: Namespace):
117117 self .python_cmd : tuple [str ] = tuple (ns .python )
118118 else :
119119 self .python_cmd = None
120+ print ("main process python_cmd:" , self .python_cmd )
120121 self .coverage : bool = ns .trace
121122 self .coverage_dir : StrPath | None = ns .coverdir
122123 self .tmp_dir : StrPath | None = ns .tempdir
Original file line number Diff line number Diff line change @@ -27,10 +27,12 @@ def create_worker_process(runtests: RunTests,
2727 executable = python_cmd
2828 else :
2929 executable = [sys .executable ]
30+ print ("main process executable:" , executable )
3031 cmd = [* executable , * support .args_from_interpreter_flags (),
3132 '-u' , # Unbuffered stdout and stderr
3233 '-m' , 'test.libregrtest.worker' ,
3334 worker_json ]
35+ print ("main process worker cmd:" , cmd )
3436
3537 env = dict (os .environ )
3638 if tmp_dir is not None :
You can’t perform that action at this time.
0 commit comments