1from lldbsuite.test.decorators import * 2from lldbsuite.test.concurrent_base import ConcurrentEventsBase 3from lldbsuite.test.lldbtest import TestBase 4 5 6@skipIfWindows 7class ConcurrentBreakpointDelayBreakpointOneSignal(ConcurrentEventsBase): 8 # Atomic sequences are not supported yet for MIPS in LLDB. 9 @skipIf(triple="^mips") 10 def test(self): 11 """Test two threads that trigger a breakpoint (one with a 1 second delay) and one signal thread.""" 12 self.build() 13 self.do_thread_actions( 14 num_breakpoint_threads=1, 15 num_delay_breakpoint_threads=1, 16 num_signal_threads=1, 17 ) 18