[Lldb-commits] [lldb] a63daf6 - [lldb] Remote leftover _llgs from TestGdbRemoteConnection.py

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 2 01:59:35 PST 2021


Author: Pavel Labath
Date: 2021-03-02T10:59:25+01:00
New Revision: a63daf693ca4b67d8fae8546024d954fb2659c24

URL: https://github.com/llvm/llvm-project/commit/a63daf693ca4b67d8fae8546024d954fb2659c24
DIFF: https://github.com/llvm/llvm-project/commit/a63daf693ca4b67d8fae8546024d954fb2659c24.diff

LOG: [lldb] Remote leftover _llgs from TestGdbRemoteConnection.py

the suffix will be added when the test is instantiated for llgs and
debugserver.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-server/commandline/TestGdbRemoteConnection.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-server/commandline/TestGdbRemoteConnection.py b/lldb/test/API/tools/lldb-server/commandline/TestGdbRemoteConnection.py
index c9799d1976cb..a82f4a8279b3 100644
--- a/lldb/test/API/tools/lldb-server/commandline/TestGdbRemoteConnection.py
+++ b/lldb/test/API/tools/lldb-server/commandline/TestGdbRemoteConnection.py
@@ -128,14 +128,14 @@ class TestGdbRemoteConnection(gdbremote_testcase.GdbRemoteTestCaseBase):
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfRemote  # reverse connect is not a supported use case for now
-    def test_reverse_connect_llgs(self):
+    def test_reverse_connect(self):
         # Reverse connect is the default connection method.
         self.connect_to_debug_monitor()
         # Verify we can do the handshake.  If that works, we'll call it good.
         self.do_handshake(self.sock)
 
     @skipIfRemote
-    def test_named_pipe_llgs(self):
+    def test_named_pipe(self):
         family, type, proto, _, addr = socket.getaddrinfo(
             self.stub_hostname, 0, proto=socket.IPPROTO_TCP)[0]
         self.sock = socket.socket(family, type, proto)


        


More information about the lldb-commits mailing list