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

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 3 00:06:27 PDT 2026


https://github.com/medismailben created https://github.com/llvm/llvm-project/pull/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.

>From 826a3146d685b86bfebc68d36b591b5a6dfc9eb1 Mon Sep 17 00:00:00 2001
From: Med Ismail Bennani <ismail at bennani.ma>
Date: Mon, 3 Aug 2026 00:02:19 -0700
Subject: [PATCH] [lldb] Skip flaky
 test_circular_dependency_evaluate_expression_in_get_frame

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.
---
 .../circular_dependency/TestFrameProviderCircularDependency.py   | 1 +
 1 file changed, 1 insertion(+)

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