summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-11-01 14:30:32 +1100
committerChris Johns <chrisj@rtems.org>2017-11-01 14:30:32 +1100
commit0fe3a4b58686889aecbbe33ccb71ae69dd669504 (patch)
treed5cc830f5b935cf710849ccb83e99376872f4ff7
parentTester - RISC-V: Add spike simulator and scripts/bsp for riscv ports (diff)
downloadrtems-tools-0fe3a4b58686889aecbbe33ccb71ae69dd669504.tar.bz2
tester: Fix rtems-bsp-builder reporting bug
-rwxr-xr-xtester/rt/check.py4
1 files 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: