[LLDB] Skip TestThreadSpecificBreakpoint.py on AArch64/Windows
authorMuhammad Omair Javaid <omair.javaid@linaro.org>
Tue, 3 Jan 2023 14:38:30 +0000 (18:38 +0400)
committerMuhammad Omair Javaid <omair.javaid@linaro.org>
Tue, 3 Jan 2023 14:42:43 +0000 (18:42 +0400)
TestThreadSpecificBreakpoint.py is flaky on AArch64/Windows buildbot
and results in timeout randomly. This patch marks the test skipped.

lldb/test/API/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py

index 521e561..f5561ef 100644 (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)