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

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 1 02:38:38 PDT 2021


labath added inline comments.


================
Comment at: lldb/test/API/functionalities/gdb_remote_client/TestPty.py:21
+
+    @skipIfWindows
+    def test_process_connect_sync(self):
----------------
I think this can be applied at class level


================
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')
+
----------------
do you actually need to keep the slave open here?


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

https://reviews.llvm.org/D110878



More information about the lldb-commits mailing list