[lldb] [test] Fix new signal tests to use remote-linux plugin

Hopefully this will fix OSX and Windows buildbots
This commit is contained in:
Michał Górny 2021-11-10 18:07:36 +01:00
parent 307cc490e7
commit d96656ca90
1 changed files with 3 additions and 2 deletions

View File

@ -426,6 +426,7 @@ class TestGDBRemoteClient(GDBRemoteTestBase):
self.server.responder = MyResponder()
self.runCmd("platform select remote-linux")
target = self.createTarget("a.yaml")
process = self.connect(target)
@ -434,7 +435,6 @@ class TestGDBRemoteClient(GDBRemoteTestBase):
self.assertEqual(process.threads[0].GetStopDescription(100),
'signal SIGBUS')
@skipIfWindows
def test_signal_lldb_old(self):
class MyResponder(MockGDBServerResponder):
def qSupported(self, client_supported):
@ -454,6 +454,7 @@ class TestGDBRemoteClient(GDBRemoteTestBase):
self.server.responder = MyResponder()
self.runCmd("platform select remote-linux")
target = self.createTarget("a.yaml")
process = self.connect(target)
@ -462,7 +463,6 @@ class TestGDBRemoteClient(GDBRemoteTestBase):
self.assertEqual(process.threads[0].GetStopDescription(100),
'signal SIGUSR1')
@skipIfWindows
def test_signal_lldb(self):
class MyResponder(MockGDBServerResponder):
def qSupported(self, client_supported):
@ -479,6 +479,7 @@ class TestGDBRemoteClient(GDBRemoteTestBase):
self.server.responder = MyResponder()
self.runCmd("platform select remote-linux")
target = self.createTarget("a.yaml")
process = self.connect(target)