This infrastructure has proven proven its worth, so give it a more prominent place. My immediate motivation for this is the desire to reuse this infrastructure for qemu platform testing, but I believe this move makes sense independently of that. Moving this code to the packages tree will allow as to add more structure to the gdb client tests -- currently they are all crammed into the same test folder as that was the only way they could access this code. I'm splitting the code into two parts while moving it. The first once contains just the generic gdb protocol wrappers, while the other one contains the unit test glue. The reason for that is that for qemu testing, I need to run the gdb code in a separate process, so I will only be using the first part there. Differential Revision: https://reviews.llvm.org/D113893
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
import lldb
|
|
import time
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.gdbclientutils import *
|
|
from lldbsuite.test.lldbgdbclient import GDBRemoteTestBase
|
|
|
|
class TestPlatformKill(GDBRemoteTestBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
@skipIfRemote
|
|
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr52451")
|
|
def test_kill_different_platform(self):
|
|
"""Test connecting to a remote linux platform"""
|
|
|
|
self.build(dictionary={"CXX_SOURCES":"sleep.cpp"})
|
|
host_process = self.spawnSubprocess(self.getBuildArtifact())
|
|
|
|
# Create a fake remote process with the same PID as host_process
|
|
class MyResponder(MockGDBServerResponder):
|
|
def __init__(self):
|
|
MockGDBServerResponder.__init__(self)
|
|
self.got_kill = False
|
|
|
|
def qC(self):
|
|
return "QC%x"%host_process.pid
|
|
|
|
def k(self):
|
|
self.got_kill = True
|
|
return "X09"
|
|
|
|
self.server.responder = MyResponder()
|
|
|
|
error = lldb.SBError()
|
|
target = self.dbg.CreateTarget("", "x86_64-pc-linux", "remote-linux",
|
|
False, error)
|
|
self.assertSuccess(error)
|
|
process = self.connect(target)
|
|
self.assertEqual(process.GetProcessID(), host_process.pid)
|
|
|
|
host_platform = lldb.SBPlatform("host")
|
|
self.assertSuccess(host_platform.Kill(host_process.pid))
|
|
|
|
# Host dies, remote process lives.
|
|
self.assertFalse(self.server.responder.got_kill)
|
|
self.assertIsNotNone(host_process.wait(timeout=10))
|
|
|
|
# Now kill the remote one as well
|
|
self.assertSuccess(process.Kill())
|
|
self.assertTrue(self.server.responder.got_kill)
|