summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2020-06-17 08:43:00 +1000
committerChris Johns <chrisj@rtems.org>2020-06-17 08:43:00 +1000
commit4f5485eb51ffd7e091d92e3f95b720a9238c75fb (patch)
tree519dd7e116df7828672a73c57ce10b4a4b8ca147
parentlinkers/ld: Output all reloc records to the RAP file (diff)
downloadrtems-tools-4f5485eb51ffd7e091d92e3f95b720a9238c75fb.tar.bz2
rtems-test: target_exe_filter fails when there is no filter5.1
Closes #4006
-rw-r--r--tester/rt/config.py1
-rw-r--r--tester/rt/tftp.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/tester/rt/config.py b/tester/rt/config.py
index aa4a2d8..ee639e9 100644
--- a/tester/rt/config.py
+++ b/tester/rt/config.py
@@ -178,6 +178,7 @@ class file(config.file):
else:
pat += c
raise error.general('invalid exe filter: %s' % (f))
+ return exe
def _output_length(self):
self._lock()
diff --git a/tester/rt/tftp.py b/tester/rt/tftp.py
index c91ae51..d518036 100644
--- a/tester/rt/tftp.py
+++ b/tester/rt/tftp.py
@@ -162,6 +162,8 @@ class tftp(object):
self.console = console
self.port = port
self.exe = executable
+ if self.console:
+ self.console('tftp: exe: %s' % (executable))
self.timeout = timeout[1]
self.listener = threading.Thread(target = self._runner,
name = 'tftp-listener')