1
0
Fork 0

tests/dbusrunner: Print the subprocess PID that has been launched

It can be useful for debugging purposes

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3793>
This commit is contained in:
Marco Trevisan (Treviño) 2023-05-22 21:51:08 +02:00 committed by Marge Bot
parent c6631077d7
commit d01d153f56

View file

@ -276,6 +276,7 @@ def wrap_call(args, wrapper):
args = wrapper.split(' ') + args
p = subprocess.Popen(args, env=env)
print('Process', args, 'started with pid', p.pid, file=sys.stderr)
return p.wait()