[lldb] Remote leftover _llgs from TestGdbRemoteConnection.py

the suffix will be added when the test is instantiated for llgs and
debugserver.
This commit is contained in:
Pavel Labath 2021-02-09 21:12:30 +01:00
parent f47ff8cff1
commit a63daf693c
1 changed files with 2 additions and 2 deletions

View File

@ -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)