When a test depends on a new debugserver feature/fix, the API test must be marked @skipIfOutOfTreeDebugserver because the macOS CI bots test using the latest Xcode release debugserver. But over time all of these fixes & new features are picked up in the Xcode debugserver and these skips can be removed. We may see unexpected test failures from removing all of these 1+ year old skips, but that's likely a separate reason the test is failing that is being papered over by this skip.
17 lines
534 B
Python
17 lines
534 B
Python
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.concurrent_base import ConcurrentEventsBase
|
|
from lldbsuite.test.lldbtest import TestBase
|
|
|
|
|
|
@skipIfWindows
|
|
class ConcurrentManySignals(ConcurrentEventsBase):
|
|
# Atomic sequences are not supported yet for MIPS in LLDB.
|
|
@skipIf(triple="^mips")
|
|
# This test is flaky on Darwin.
|
|
@skipIfDarwin
|
|
@expectedFailureNetBSD
|
|
def test(self):
|
|
"""Test 100 signals from 100 threads."""
|
|
self.build()
|
|
self.do_thread_actions(num_signal_threads=100)
|