From 0fe3a4b58686889aecbbe33ccb71ae69dd669504 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 1 Nov 2017 14:30:32 +1100 Subject: tester: Fix rtems-bsp-builder reporting bug --- tester/rt/check.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tester/rt/check.py b/tester/rt/check.py index 7e81d30..8c77dbd 100755 --- a/tester/rt/check.py +++ b/tester/rt/check.py @@ -343,7 +343,7 @@ class warnings_errors: s += textbox.line(cols_1, marker = '+', indent = 1) return s - def warnings_report(self, summary): + def warnings_report(self, summary = False): self.lock.acquire() s = ' No warnings' + os.linesep try: @@ -1285,7 +1285,7 @@ class builder: os.linesep)) f.write(os.linesep) f.write(command_line() + os.linesep) - f.write(self.results.warnings_errors.report()) + f.write(self.results.warnings_errors.warnings_report()) def _failures_report(self): if self.options['failures-report'] is not None: -- cgit v1.2.3