Skip to content

Commit

Permalink
temp: debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jul 14, 2024
1 parent b71c08b commit 2188781
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/tools/libkcov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def do(self, cmdline, /, kcovKcov=True, *, timeout=default_timeout):
args = cmdline.split()
term = subprocess.run(args, stdout=PIPE, stderr=PIPE, timeout=timeout)
output = term.stdout + term.stderr
print(term.stderr)
rv = term.returncode

return rv, output
Expand All @@ -76,6 +77,7 @@ def doCmd(self, cmdline):
args = cmdline.split()
term = subprocess.run(args, stdout=PIPE, stderr=PIPE, timeout=default_timeout)
output = term.stdout + term.stderr
print(term.stderr)
rv = term.returncode

return rv, output
Expand Down

0 comments on commit 2188781

Please sign in to comment.