forked from OSchip/llvm-project
[lldb] [test] Skip new signal tests on Windows
This commit is contained in:
parent
332318ffb6
commit
e7861449ea
|
@ -434,6 +434,7 @@ class TestGDBRemoteClient(GDBRemoteTestBase):
|
||||||
self.assertEqual(process.threads[0].GetStopDescription(100),
|
self.assertEqual(process.threads[0].GetStopDescription(100),
|
||||||
'signal SIGBUS')
|
'signal SIGBUS')
|
||||||
|
|
||||||
|
@skipIfWindows
|
||||||
def test_signal_lldb_old(self):
|
def test_signal_lldb_old(self):
|
||||||
class MyResponder(MockGDBServerResponder):
|
class MyResponder(MockGDBServerResponder):
|
||||||
def qSupported(self, client_supported):
|
def qSupported(self, client_supported):
|
||||||
|
@ -461,6 +462,7 @@ class TestGDBRemoteClient(GDBRemoteTestBase):
|
||||||
self.assertEqual(process.threads[0].GetStopDescription(100),
|
self.assertEqual(process.threads[0].GetStopDescription(100),
|
||||||
'signal SIGUSR1')
|
'signal SIGUSR1')
|
||||||
|
|
||||||
|
@skipIfWindows
|
||||||
def test_signal_lldb(self):
|
def test_signal_lldb(self):
|
||||||
class MyResponder(MockGDBServerResponder):
|
class MyResponder(MockGDBServerResponder):
|
||||||
def qSupported(self, client_supported):
|
def qSupported(self, client_supported):
|
||||||
|
|
Loading…
Reference in New Issue