15 lines · python
1from lldbsuite.test.decorators import *2from lldbsuite.test.concurrent_base import ConcurrentEventsBase3from lldbsuite.test.lldbtest import TestBase4 5 6@skipIfWindows7class ConcurrentSignalDelayBreak(ConcurrentEventsBase):8 # Atomic sequences are not supported yet for MIPS in LLDB.9 @skipIf(triple="^mips")10 @expectedFlakeyNetBSD11 def test(self):12 """Test signal and a (1 second delay) breakpoint in multiple threads."""13 self.build()14 self.do_thread_actions(num_delay_breakpoint_threads=1, num_signal_threads=1)15