brintos

brintos / llvm-project-archived public Read only

0
0
Text · 534 B · d241aa7 Raw
17 lines · python
1from lldbsuite.test.decorators import *2from lldbsuite.test.concurrent_base import ConcurrentEventsBase3from lldbsuite.test.lldbtest import TestBase4 5 6@skipIfWindows7class ConcurrentManySignals(ConcurrentEventsBase):8    # Atomic sequences are not supported yet for MIPS in LLDB.9    @skipIf(triple="^mips")10    # This test is flaky on Darwin.11    @skipIfDarwin12    @expectedFailureNetBSD13    def test(self):14        """Test 100 signals from 100 threads."""15        self.build()16        self.do_thread_actions(num_signal_threads=100)17