brintos

brintos / llvm-project-archived public Read only

0
0
Text · 590 B · 68e47fa Raw
16 lines · python
1from lldbsuite.test.decorators import *2from lldbsuite.test.concurrent_base import ConcurrentEventsBase3from lldbsuite.test.lldbtest import TestBase4 5 6@skipIfWindows7class ConcurrentSignalDelayWatch(ConcurrentEventsBase):8    # Atomic sequences are not supported yet for MIPS in LLDB.9    @skipIf(triple="^mips")10    @expectedFailureNetBSD11    @add_test_categories(["watchpoint"])12    def test(self):13        """Test a (1 second delay) watchpoint and a signal in multiple threads."""14        self.build()15        self.do_thread_actions(num_signal_threads=1, num_delay_watchpoint_threads=1)16