summaryrefslogtreecommitdiffstats
path: root/tester/rt/exe.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2021-09-14 17:18:47 +1000
committerChris Johns <chrisj@rtems.org>2021-09-19 08:31:58 +1000
commitdac7ef233aba16a11afff6d9ca2f65173eb03479 (patch)
tree7e9703cef1da0bd60de18430cb878199ede96591 /tester/rt/exe.py
parenttester: Simplify the console data handling (diff)
downloadrtems-tools-dac7ef233aba16a11afff6d9ca2f65173eb03479.tar.bz2
tester/tftp: Fix recovery of timed out TFTP sessions
- Add support to retry the tftp session if the target has not started - Add target handlers for the test directives to allow recovery on error
Diffstat (limited to 'tester/rt/exe.py')
-rw-r--r--tester/rt/exe.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tester/rt/exe.py b/tester/rt/exe.py
index 5655073..13b9686 100644
--- a/tester/rt/exe.py
+++ b/tester/rt/exe.py
@@ -170,3 +170,15 @@ class exe(object):
self._kill()
finally:
self._unlock('_kill')
+
+ def target_restart(self, started):
+ pass
+
+ def target_reset(self, started):
+ pass
+
+ def target_start(self):
+ pass
+
+ def target_end(self):
+ pass