[Lldb-commits] [lldb] 2cf2768 - [lldb/test] XFAIL TestFrameProviderCircularDependency.py on Windows
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 2 17:26:46 PST 2025
Author: Med Ismail Bennani
Date: 2025-12-02T17:26:30-08:00
New Revision: 2cf276880d58effab669f89dcda4d27bb9c15d73
URL: https://github.com/llvm/llvm-project/commit/2cf276880d58effab669f89dcda4d27bb9c15d73
DIFF: https://github.com/llvm/llvm-project/commit/2cf276880d58effab669f89dcda4d27bb9c15d73.diff
LOG: [lldb/test] XFAIL TestFrameProviderCircularDependency.py on Windows
This patch disables TestFrameProviderCircularDependency.py on Windows
since the scripted frame provider uses SBTarget.FindFunctions which
doesn't seem to be working (according to TestTargetAPI.test_find_functions).
Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>
Added:
Modified:
lldb/test/API/functionalities/scripted_frame_provider/circular_dependency/TestFrameProviderCircularDependency.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/scripted_frame_provider/circular_dependency/TestFrameProviderCircularDependency.py b/lldb/test/API/functionalities/scripted_frame_provider/circular_dependency/TestFrameProviderCircularDependency.py
index e03583a99425b..8fe0b813a9eb7 100644
--- a/lldb/test/API/functionalities/scripted_frame_provider/circular_dependency/TestFrameProviderCircularDependency.py
+++ b/lldb/test/API/functionalities/scripted_frame_provider/circular_dependency/TestFrameProviderCircularDependency.py
@@ -16,6 +16,7 @@ def setUp(self):
TestBase.setUp(self)
self.source = "main.c"
+ @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
def test_circular_dependency_with_function_replacement(self):
"""
Test the circular dependency fix with a provider that replaces function names.
More information about the lldb-commits
mailing list