1 2from lldbsuite.test.decorators import * 3from lldbsuite.test.concurrent_base import ConcurrentEventsBase 4from lldbsuite.test.lldbtest import TestBase 5 6 7@skipIfWindows 8class ConcurrentDelayWatchBreak(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 (1-second delay) watchpoint and a breakpoint in multiple threads.""" 15 self.build() 16 self.do_thread_actions( 17 num_breakpoint_threads=1, 18 num_delay_watchpoint_threads=1) 19