From bce090b2425bfe603bd35c83c3d56b978a0c82aa Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Tue, 28 Mar 2017 10:20:14 +1100 Subject: [PATCH] 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):