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