1 2from lldbsuite.test.decorators import * 3from lldbsuite.test.concurrent_base import ConcurrentEventsBase 4from lldbsuite.test.lldbtest import TestBase 5 6 7@skipIfWindows 8class ConcurrentBreakpointsDelayedBreakpointOneWatchpoint( 9 ConcurrentEventsBase): 10 11 # Atomic sequences are not supported yet for MIPS in LLDB. 12 @skipIf(triple='^mips') 13 @add_test_categories(["watchpoint"]) 14 def test(self): 15 """Test a breakpoint, a delayed breakpoint, and one watchpoint thread. """ 16 self.build() 17 self.do_thread_actions(num_breakpoint_threads=1, 18 num_delay_breakpoint_threads=1, 19 num_watchpoint_threads=1) 20