[lldb] Fix tests on Linux on Arm (32-bit) after #181071 - #191861
Merged
Merged
Conversation
Member
|
@llvm/pr-subscribers-lldb Author: Leandro Lupori (luporl) ChangesPR #181071 caused regressions on Linux on Arm. These are being tracked
This PR disables the failing tests for now, to fix the broken buildbot. Full diff: https://github.com/llvm/llvm-project/pull/191861.diff 2 Files Affected:
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 5504a919c2c5f..159a19c8b6c15 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$"])
@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 fb41cb29f2b4f..208af1895d0e4 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$"])
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
def test_bt_provider_star_with_thread_filter(self):
"""
|
PR llvm#181071 caused regressions on Linux on Arm. These are being tracked in: - llvm#191855 - llvm#191859 This PR disables the failing tests for now, to fix the broken buildbot.
luporl
force-pushed
the
luporl-lldb-fix-arm
branch
from
April 13, 2026 17:51
f479d7e to
abb0280
Compare
|
✅ With the latest revision this PR passed the Python code formatter. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR #181071 caused regressions on Linux on Arm. These are being tracked
in:
This PR disables the failing tests for now, to fix the broken buildbot.