brintos

brintos / llvm-project-archived public Read only

0
0
Text · 455 B · c5d5e40 Raw
14 lines · python
1from lldbsuite.test.decorators import *2from lldbsuite.test.concurrent_base import ConcurrentEventsBase3from lldbsuite.test.lldbtest import TestBase4 5 6@skipIfWindows7class ConcurrentManyCrash(ConcurrentEventsBase):8    # Atomic sequences are not supported yet for MIPS in LLDB.9    @skipIf(triple="^mips")10    def test(self):11        """Test 100 threads that cause a segfault."""12        self.build()13        self.do_thread_actions(num_crash_threads=100)14