[Lldb-commits] [PATCH] D110878: [lldb] Add a gdb_remote_client test for connecting to pty [WIP]

Michał Górny via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 1 05:00:39 PDT 2021


mgorny marked 2 inline comments as done.
mgorny added inline comments.


================
Comment at: lldb/test/API/functionalities/gdb_remote_client/gdbclientutils.py:409
+        self._master = io.FileIO(master, 'r+b')
+        self._slave = io.FileIO(slave, 'r+b')
+
----------------
labath wrote:
> do you actually need to keep the slave open here?
Yes, it seems this way. If I close it early, the test hangs.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D110878/new/

https://reviews.llvm.org/D110878



More information about the lldb-commits mailing list