[Lldb-commits] [PATCH] D113184: [lldb] Fix cross-platform kills
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 4 08:50:54 PDT 2021
JDevlieghere accepted this revision.
JDevlieghere added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: lldb/test/API/functionalities/gdb_remote_client/TestPlatformKill.py:17-27
+ class MyResponder(MockGDBServerResponder):
+ def __init__(self):
+ MockGDBServerResponder.__init__(self)
+ self.got_kill = False
+
+ def qC(self):
+ return "QC%x"%host_process.pid
----------------
I always appreciate the elegance of these tests.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113184/new/
https://reviews.llvm.org/D113184
More information about the lldb-commits
mailing list