Permalink
Browse files

Realized this logging is now incorrect

  • Loading branch information...
msmith-techempower committed Jun 6, 2017
1 parent f56db26 commit f8ce439df323c796d3f568ef6d8474986e1b05e0
Showing with 2 additions and 2 deletions.
  1. +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

Please sign in to comment.