mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2025-12-24 22:50:05 +01:00
test: distinguish better between stderr/stdout of the subprocess
This commit is contained in:
parent
1a64b4963d
commit
1b34bc6f7c
1 changed files with 2 additions and 2 deletions
|
|
@ -304,10 +304,10 @@ class Eis:
|
|||
|
||||
if stdout:
|
||||
for line in stdout.split("\n"):
|
||||
logger.info(line)
|
||||
logger.info(f"stdout: {line}")
|
||||
if stderr:
|
||||
for line in stderr.split("\n"):
|
||||
logger.info(line)
|
||||
logger.info(f"stderr: {line}")
|
||||
self.process.wait()
|
||||
rc = self.process.returncode
|
||||
if rc not in [0, -signal.SIGTERM]:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue