[rtems-tools commit] bsp-builder: Fix final output errors.
Chris Johns
chrisj at rtems.org
Mon Dec 12 22:56:32 UTC 2016
Module: rtems-tools
Branch: master
Commit: a72a462adc18bdd55c5950d9c3f22e0d44e80c9b
Changeset: http://git.rtems.org/rtems-tools/commit/?id=a72a462adc18bdd55c5950d9c3f22e0d44e80c9b
Author: Chris Johns <chrisj at rtems.org>
Date: Tue Dec 13 09:56:25 2016 +1100
bsp-builder: Fix final output errors.
---
tester/rt/check.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tester/rt/check.py b/tester/rt/check.py
index 6c158ce..44655f8 100755
--- a/tester/rt/check.py
+++ b/tester/rt/check.py
@@ -494,9 +494,9 @@ class build:
self.build_arch_bsp(arch, bsp)
end = datetime.datetime.now()
log.notice('^ Architecture Time %s' % (str(end - start)))
- log.notice(' warnings:%d exes:%d objs:%s libs:%d' % \
- self.warnings.get(), self.counts['exes'],
- self.counts['objs'], self.counts['libs'])
+ log.notice(' warnings:%d exes:%d objs:%d libs:%d' % \
+ (self.warnings.get(), self.counts['exes'],
+ self.counts['objs'], self.counts['libs']))
log.output('Architecture Warnings:')
log.output(self.warnings.report())
@@ -504,9 +504,9 @@ class build:
for arch in self.config.archs():
self.build_arch(arch)
log.notice('^ Profile Time %s' % (str(end - start)))
- log.notice('+ warnings:%d exes:%d objs:%s libs:%d' % \
- self.warnings.get(), self.counts['exes'],
- self.counts['objs'], self.counts['libs'])
+ log.notice('+ warnings:%d exes:%d objs:%d libs:%d' % \
+ (self.warnings.get(), self.counts['exes'],
+ self.counts['objs'], self.counts['libs']))
log.output('Profile Warnings:')
log.output(self.warnings.report())
More information about the vc
mailing list