Skip to content

Commit 4c8d5c8

Browse files
committed
I WANT MOOOOOAR DEBUG
1 parent c436370 commit 4c8d5c8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Lib/test/libregrtest/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

Lib/test/libregrtest/worker.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)