[Lldb-commits] [lldb] [lldb] Disable TestPtyServer API test when remote testing (PR #94587)

via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 6 00:36:37 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Dmitry Vasilyev (slydiman)

<details>
<summary>Changes</summary>

The local PTY is not available for the remotely executed lldb-server to pass the test. Also, in general, we cannot execute the local lldb-server instance because it could be compiled for the different system/cpu target.

---
Full diff: https://github.com/llvm/llvm-project/pull/94587.diff


1 Files Affected:

- (modified) lldb/test/API/tools/lldb-server/TestPtyServer.py (+1) 


``````````diff
diff --git a/lldb/test/API/tools/lldb-server/TestPtyServer.py b/lldb/test/API/tools/lldb-server/TestPtyServer.py
index 4bfcf70bfa01b..345f68f6d87d3 100644
--- a/lldb/test/API/tools/lldb-server/TestPtyServer.py
+++ b/lldb/test/API/tools/lldb-server/TestPtyServer.py
@@ -7,6 +7,7 @@
 import xml.etree.ElementTree as ET
 
 
+ at skipIfRemote
 @skipIf(hostoslist=["windows"])
 class PtyServerTestCase(gdbremote_testcase.GdbRemoteTestCaseBase):
     def setUp(self):

``````````

</details>


https://github.com/llvm/llvm-project/pull/94587


More information about the lldb-commits mailing list