diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/gdbclientutils.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/gdbclientutils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/gdbclientutils.py b/lldb/packages/Python/lldbsuite/test/gdbclientutils.py index 68ac0e0..7e78963 100644 --- a/lldb/packages/Python/lldbsuite/test/gdbclientutils.py +++ b/lldb/packages/Python/lldbsuite/test/gdbclientutils.py @@ -185,6 +185,8 @@ class MockGDBServerResponder: return self.qsProcessInfo() if packet.startswith("qfProcessInfo"): return self.qfProcessInfo(packet) + if packet.startswith("jGetLoadedDynamicLibrariesInfos"): + return self.jGetLoadedDynamicLibrariesInfos(packet) if packet.startswith("qPathComplete:"): return self.qPathComplete() if packet.startswith("vFile:"): @@ -211,6 +213,9 @@ class MockGDBServerResponder: def qfProcessInfo(self, packet): return "E04" + def jGetLoadedDynamicLibrariesInfos(self, packet): + return "" + def qGetWorkingDir(self): return "2f" |