Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-10-01 13:42:46 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-10-01 13:42:46 (GMT)
commitf14d4440200e66fcab35d38b73d843097e8d4e42 (patch)
treeb9822f00061f89e784deeb18aaa21f49a0b6cc59
parentc171b8048e94027a69ca9371e34aaf28c42cb49c (diff)
Align result values
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
-rw-r--r--cairo_perf_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cairo_perf_test.py b/cairo_perf_test.py
index 41c7f30..65bc72f 100644
--- a/cairo_perf_test.py
+++ b/cairo_perf_test.py
@@ -127,7 +127,7 @@ class CairoTest(Gtk.DrawingArea):
for test in CairoTest.tests:
if test in self._results:
values = self._results[test]
- logging.error('%s average = %f, max = %f, min = %f',
+ logging.error('%-20s average = %f, max = %f, min = %f',
test, sum(values) / len(values), max(values), min(values))
def _change_test(self):