199451b44SJordan Rupprechtfrom lldbsuite.test.decorators import * 299451b44SJordan Rupprechtfrom lldbsuite.test.concurrent_base import ConcurrentEventsBase 399451b44SJordan Rupprechtfrom lldbsuite.test.lldbtest import TestBase 499451b44SJordan Rupprecht 599451b44SJordan Rupprecht 699451b44SJordan Rupprecht@skipIfWindows 799451b44SJordan Rupprechtclass ConcurrentTwoBreakpointsOneDelaySignal(ConcurrentEventsBase): 899451b44SJordan Rupprecht # Atomic sequences are not supported yet for MIPS in LLDB. 9*2238dcc3SJonas Devlieghere @skipIf(triple="^mips") 1099562332SMichał Górny @expectedFlakeyNetBSD 11*2238dcc3SJonas Devlieghere @expectedFailureAll( 12*2238dcc3SJonas Devlieghere archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49433" 13*2238dcc3SJonas Devlieghere ) 1499451b44SJordan Rupprecht def test(self): 1599451b44SJordan Rupprecht """Test two threads that trigger a breakpoint and one (1 second delay) signal thread.""" 16d7dbe2c4SPavel Labath self.build() 17*2238dcc3SJonas Devlieghere self.do_thread_actions(num_breakpoint_threads=2, num_delay_signal_threads=1) 18