1
2import unittest2
3
4from lldbsuite.test.decorators import *
5from lldbsuite.test.concurrent_base import ConcurrentEventsBase
6from lldbsuite.test.lldbtest import TestBase
7
8
9@skipIfWindows
10class ConcurrentSignalNWatchNBreak(ConcurrentEventsBase):
11
12    mydir = ConcurrentEventsBase.compute_mydir(__file__)
13
14    # Atomic sequences are not supported yet for MIPS in LLDB.
15    @skipIf(triple='^mips')
16    @expectedFailureNetBSD
17    @expectedFailureAll(archs=["aarch64"], oslist=["freebsd"],
18                        bugnumber="llvm.org/pr49433")
19    @skipIf(
20        oslist=["ios", "watchos", "tvos", "bridgeos", "macosx"],
21        archs=['arm64', 'arm64e', 'arm64_32', 'arm'],
22        bugnumber="rdar://81811539")
23    @add_test_categories(["watchpoint"])
24    def test(self):
25        """Test one signal thread with 5 watchpoint and breakpoint threads."""
26        self.build()
27        self.do_thread_actions(num_signal_threads=1,
28                               num_watchpoint_threads=5,
29                               num_breakpoint_threads=5)
30