[Lldb-commits] [lldb] a6cc363 - [lldb] Disable TestPtyServer API test when remote testing (#94587)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 6 02:02:31 PDT 2024
Author: Dmitry Vasilyev
Date: 2024-06-06T10:02:27+01:00
New Revision: a6cc363b2743a264eb06e46cac05c3c9c92e3ef7
URL: https://github.com/llvm/llvm-project/commit/a6cc363b2743a264eb06e46cac05c3c9c92e3ef7
DIFF: https://github.com/llvm/llvm-project/commit/a6cc363b2743a264eb06e46cac05c3c9c92e3ef7.diff
LOG: [lldb] Disable TestPtyServer API test when remote testing (#94587)
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.
Added:
Modified:
lldb/test/API/tools/lldb-server/TestPtyServer.py
Removed:
################################################################################
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):
More information about the lldb-commits
mailing list