diff --git a/lldb/test/API/functionalities/scripted_frame_provider/pass_through_prefix/TestFrameProviderPassThroughPrefix.py b/lldb/test/API/functionalities/scripted_frame_provider/pass_through_prefix/TestFrameProviderPassThroughPrefix.py index 9eb52494163ec..06073fe6f4ba7 100644 --- a/lldb/test/API/functionalities/scripted_frame_provider/pass_through_prefix/TestFrameProviderPassThroughPrefix.py +++ b/lldb/test/API/functionalities/scripted_frame_provider/pass_through_prefix/TestFrameProviderPassThroughPrefix.py @@ -24,6 +24,11 @@ def setUp(self): TestBase.setUp(self) self.source = "main.c" + @expectedFailureAll( + oslist=["linux"], + archs=["arm$"], + bugnumber="github.com/llvm/llvm-project/issues/191859", + ) @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778") def test_pass_through_with_prefix(self): """ diff --git a/lldb/test/API/functionalities/scripted_frame_provider/thread_filter/TestFrameProviderThreadFilter.py b/lldb/test/API/functionalities/scripted_frame_provider/thread_filter/TestFrameProviderThreadFilter.py index 8779b061041d6..d145945a14536 100644 --- a/lldb/test/API/functionalities/scripted_frame_provider/thread_filter/TestFrameProviderThreadFilter.py +++ b/lldb/test/API/functionalities/scripted_frame_provider/thread_filter/TestFrameProviderThreadFilter.py @@ -59,6 +59,11 @@ def register_providers(self, target): ) self.assertTrue(error.Success(), f"Should register {cls}: {error}") + @skipIf( + oslist=["linux"], + archs=["arm$"], + bugnumber="github.com/llvm/llvm-project/issues/191855", + ) @skipIf(oslist=["windows"], bugnumber="github.com/llvm/llvm-project/issues/191222") def test_bt_provider_star_with_thread_filter(self): """