1from lldbsuite.test.decorators import * 2from lldbsuite.test.concurrent_base import ConcurrentEventsBase 3from lldbsuite.test.lldbtest import TestBase 4 5 6@skipIfWindows 7class ConcurrentManyBreakpoints(ConcurrentEventsBase): 8 # Atomic sequences are not supported yet for MIPS in LLDB. 9 @skipIf(triple="^mips") 10 @skipIfOutOfTreeDebugserver 11 @expectedFailureAll( 12 archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49433" 13 ) 14 def test(self): 15 """Test 100 breakpoints from 100 threads.""" 16 self.build() 17 self.do_thread_actions(num_breakpoint_threads=100) 18