[Lldb-commits] [lldb] [lldb] Fix tests on Linux on Arm (32-bit) after #181071 (PR #191861)
Leandro Lupori via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 13 10:51:12 PDT 2026
https://github.com/luporl updated https://github.com/llvm/llvm-project/pull/191861
>From abb02804040a597489faa2402f70e32a43f7baf2 Mon Sep 17 00:00:00 2001
From: Leandro Lupori <leandro.lupori at linaro.org>
Date: Mon, 13 Apr 2026 17:35:43 +0000
Subject: [PATCH] [lldb] Fix tests on Linux on Arm (32-bit) after #181071
PR #181071 caused regressions on Linux on Arm. These are being tracked
in:
- #191855
- #191859
This PR disables the failing tests for now, to fix the broken buildbot.
---
.../pass_through_prefix/TestFrameProviderPassThroughPrefix.py | 1 +
.../thread_filter/TestFrameProviderThreadFilter.py | 1 +
2 files changed, 2 insertions(+)
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..f19c4ce681d8a 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,7 @@ 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..d76e114bc7a77 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,7 @@ 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):
"""
More information about the lldb-commits
mailing list