summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-03-28 10:20:14 +1100
committerChris Johns <chrisj@rtems.org>2017-03-28 10:20:14 +1100
commitbce090b2425bfe603bd35c83c3d56b978a0c82aa (patch)
treecfe7b7b8ef7bf0890bfecb17c3a6fc9dcf65cd47
parentpatch: ARM: Fix IEEE-754 sqrt optimization (diff)
downloadrtems-tools-bce090b2425bfe603bd35c83c3d56b978a0c82aa.tar.bz2
rtems-bsp-builder: Fix the counts to accumulate.
-rwxr-xr-xtester/rt/check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tester/rt/check.py b/tester/rt/check.py
index b82e902..7e1fc3f 100755
--- a/tester/rt/check.py
+++ b/tester/rt/check.py
@@ -403,7 +403,7 @@ class build:
counts['h'] += 1
for f in self.counts:
if f in counts:
- self.counts[f] = counts[f]
+ self.counts[f] += counts[f]
return counts
def build_arch_bsp(self, arch, bsp):