xref: /llvm-project/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py (revision 2238dcc39358353cac21df75c3c3286ab20b8f53)
1from lldbsuite.test.decorators import *
2from lldbsuite.test.concurrent_base import ConcurrentEventsBase
3from lldbsuite.test.lldbtest import TestBase
4
5
6@skipIfWindows
7class ConcurrentManyCrash(ConcurrentEventsBase):
8    # Atomic sequences are not supported yet for MIPS in LLDB.
9    @skipIf(triple="^mips")
10    @skipIfOutOfTreeDebugserver
11    def test(self):
12        """Test 100 threads that cause a segfault."""
13        self.build()
14        self.do_thread_actions(num_crash_threads=100)
15