Currently when piglit finishes running it prints a final summary. It does not however, print a newline afterwards. This means that the summary is partially overwritten by the 'thanks for running piglit' message.
This patch corrects that problem, making the final output look much nicer. Signed-off-by: Dylan Baker <dylanx.c.ba...@intel.com> --- framework/log.py | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/log.py b/framework/log.py index e0e7115..caad972 100644 --- a/framework/log.py +++ b/framework/log.py @@ -138,6 +138,7 @@ class QuietLog(BaseLog): def summary(self): with self._LOCK: self._print_summary() + self._print('\n') def _print_summary(self): """ Print the summary result -- 2.1.2 _______________________________________________ Piglit mailing list Piglit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/piglit