[LLDB] Skip TestThreadSpecificBreakpoint.py on AArch64/Windows

TestThreadSpecificBreakpoint.py is flaky on AArch64/Windows buildbot
and results in timeout randomly. This patch marks the test skipped.
This commit is contained in:
Muhammad Omair Javaid 2023-01-03 18:38:30 +04:00
parent 6186928e60
commit 2b8c308fa1

View File

@ -26,6 +26,7 @@ class ThreadSpecificBreakTestCase(TestBase):
@add_test_categories(['pyapi'])
@expectedFailureAll(oslist=['ios', 'watchos', 'tvos', 'bridgeos'], archs=['armv7', 'armv7k'], bugnumber='rdar://problem/34563920') # armv7 ios problem - breakpoint with tid qualifier isn't working
@skipIf(oslist=['windows'], archs=['aarch64']) # Flaky on buildbot
def test_thread_id(self):
self.do_test(set_thread_id)
@ -35,6 +36,7 @@ class ThreadSpecificBreakTestCase(TestBase):
self.do_test(set_thread_name)
@expectedFailureAll(oslist=['ios', 'watchos', 'tvos', 'bridgeos'], archs=['armv7', 'armv7k'], bugnumber='rdar://problem/34563920') # armv7 ios problem - breakpoint with tid qualifier isn't working
@skipIf(oslist=['windows'], archs=['aarch64']) # Flaky on buildbot
def test_current_token(self):
self.do_test(using_current)