summaryrefslogtreecommitdiff
path: root/yarn
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-12-25 21:05:43 +0200
committerLars Wirzenius <liw@liw.fi>2016-12-25 21:05:43 +0200
commit9e36a5a492f135771dc9a2132177dbfd7b92a928 (patch)
tree737cb6ea77ed62945414dce865fec9685c01f902 /yarn
parente4fd57b5fcdb147ad08f96889ac6eea06b3ac609 (diff)
downloadcmdtest-9e36a5a492f135771dc9a2132177dbfd7b92a928.tar.gz
Make --timintgs output be on multiple lines
Diffstat (limited to 'yarn')
-rwxr-xr-xyarn4
1 files changed, 2 insertions, 2 deletions
diff --git a/yarn b/yarn
index 8d2bef3..3d4865e 100755
--- a/yarn
+++ b/yarn
@@ -587,9 +587,9 @@ class YarnRunner(cliapp.Application):
def report_timings(self):
for scenario_name, scenario_duration, step_tuples in self.timings:
- self.stdout('%5.1f %s' % (scenario_duration, scenario_name))
+ self.stdout('%5.1f %s\n' % (scenario_duration, scenario_name))
for step_name, step_duration in step_tuples:
- self.stdout(' %5.1f %s' % (step_duration, step_name))
+ self.stdout(' %5.1f %s\n' % (step_duration, step_name))
YarnRunner(version=yarnlib.__version__).run()