199451b44SJordan Rupprechtfrom lldbsuite.test.decorators import *
299451b44SJordan Rupprechtfrom lldbsuite.test.concurrent_base import ConcurrentEventsBase
399451b44SJordan Rupprechtfrom lldbsuite.test.lldbtest import TestBase
499451b44SJordan Rupprecht
599451b44SJordan Rupprecht
699451b44SJordan Rupprecht@skipIfWindows
799451b44SJordan Rupprechtclass ConcurrentDelayedCrashWithBreakpointSignal(ConcurrentEventsBase):
899451b44SJordan Rupprecht    # Atomic sequences are not supported yet for MIPS in LLDB.
9*2238dcc3SJonas Devlieghere    @skipIf(triple="^mips")
1099451b44SJordan Rupprecht    def test(self):
1199451b44SJordan Rupprecht        """Test a thread with a delayed crash while other threads generate a signal and hit a breakpoint."""
12d7dbe2c4SPavel Labath        self.build()
13*2238dcc3SJonas Devlieghere        self.do_thread_actions(
14*2238dcc3SJonas Devlieghere            num_delay_crash_threads=1, num_breakpoint_threads=1, num_signal_threads=1
15*2238dcc3SJonas Devlieghere        )
16