summaryrefslogtreecommitdiffstats
path: root/tester/rt/gdb.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/gdb.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/gdb.py')
-rw-r--r--tester/rt/gdb.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tester/rt/gdb.py b/tester/rt/gdb.py
index 4abbca5..674c706 100644
--- a/tester/rt/gdb.py
+++ b/tester/rt/gdb.py
@@ -284,6 +284,18 @@ class gdb(object):
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
+
def gdb_expect(self):
if self.trace:
print('}}} gdb-expect')