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