[rtems-tools commit] rtems-bsp-builder: Fix the counts to accumulate.

Chris Johns chrisj at rtems.org
Mon Mar 27 23:20:19 UTC 2017


Module:    rtems-tools
Branch:    master
Commit:    bce090b2425bfe603bd35c83c3d56b978a0c82aa
Changeset: http://git.rtems.org/rtems-tools/commit/?id=bce090b2425bfe603bd35c83c3d56b978a0c82aa

Author:    Chris Johns <chrisj at rtems.org>
Date:      Tue Mar 28 10:20:14 2017 +1100

rtems-bsp-builder: Fix the counts to accumulate.

---

 tester/rt/check.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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):



More information about the vc mailing list