summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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')