[Lldb-commits] [lldb] 3be1dff - [lldb] Skip flaky test_circular_dependency_evaluate_expression_in_get_frame (#213610)

via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 3 00:23:00 PDT 2026


Author: Med Ismail Bennani
Date: 2026-08-03T07:22:55Z
New Revision: 3be1dff0910dc71df932380c9091a10a54ca9fe0

URL: https://github.com/llvm/llvm-project/commit/3be1dff0910dc71df932380c9091a10a54ca9fe0
DIFF: https://github.com/llvm/llvm-project/commit/3be1dff0910dc71df932380c9091a10a54ca9fe0.diff

LOG: [lldb] Skip flaky test_circular_dependency_evaluate_expression_in_get_frame (#213610)

This provider's identity-forwarding pattern intermittently hits a known
frame-identity-aliasing bug in ScriptedFrameProvider::GetFrameAtIndex,
tracked in https://github.com/llvm/llvm-project/pull/208992.

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 af8e567f4d5e7..46413105a80ce 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
@@ -164,6 +164,7 @@ def test_circular_dependency_handle_command_in_init(self):
             )
 
     @expectedFailureWindowsAndNoLLDBServer(bugnumber="llvm.org/pr24778")
+    @skipIf(bugnumber="https://github.com/llvm/llvm-project/pull/208992")
     def test_circular_dependency_evaluate_expression_in_get_frame(self):
         """
         Test that calling EvaluateExpression in get_frame_at_index doesn't


        


More information about the lldb-commits mailing list