summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-12-13 09:56:25 +1100
committerChris Johns <chrisj@rtems.org>2016-12-13 09:56:25 +1100
commita72a462adc18bdd55c5950d9c3f22e0d44e80c9b (patch)
tree8c47b9e3692e40c9fcdb20ee6bc8c51533c67102
parentbsp-builder: Add support for builds. (diff)
downloadrtems-tools-a72a462adc18bdd55c5950d9c3f22e0d44e80c9b.tar.bz2
bsp-builder: Fix final output errors.
-rwxr-xr-xtester/rt/check.py12
1 files 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())