Permalink
Browse files
Realized this logging is now incorrect
- Loading branch information...
Showing
with
2 additions
and
2 deletions.
-
+2
−2
toolset/benchmark/benchmarker.py
|
|
@@ -621,12 +621,12 @@ def exit_with_code(code): |
|
|
returnCode = self.__process.poll()
|
|
|
|
|
|
if returnCode is None:
|
|
|
leftovers = " PID PPID COMMAND" + os.linesep
|
|
|
leftovers = ""
|
|
|
for line in subprocess.check_output(['ps -aux'], shell=True).splitlines():
|
|
|
if line not in startedPIDs:
|
|
|
leftovers += line + os.linesep
|
|
|
|
|
|
started = " PID PPID COMMAND" + os.linesep
|
|
|
started = ""
|
|
|
for line in startedPIDs.splitlines():
|
|
|
if line not in normalPIDs:
|
|
|
started += line + os.linesep
|
|
|
|
0 comments on commit
f8ce439