[Lldb-commits] [lldb] [LLDB] Add SBFrameExtensions Tests (PR #169236)

Ahmed Nour via lldb-commits lldb-commits at lists.llvm.org
Sun Nov 30 14:14:25 PST 2025


================
@@ -0,0 +1,533 @@
+"""
+Test SBFrameExtensions API.
+"""
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class TestSBFrameExtensions(TestBase):
+    def setUp(self):
+        TestBase.setUp(self)
+        self.source = "main.c"
+
+    def _get_frame(self):
+        """Helper method to get a valid frame for testing."""
+        self.build()
+        self.setTearDownCleanup()
----------------
ahmednoursphinx wrote:

Removed in the latest commit

https://github.com/llvm/llvm-project/pull/169236


More information about the lldb-commits mailing list