[Lldb-commits] [lldb] [lldb] add a marker around hidden frames (PR #181143)
Charles Zablit via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 13 02:41:11 PST 2026
================
@@ -0,0 +1,97 @@
+"""
+Test that hidden frames are delimited with markers.
+"""
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class HiddenFrameMarkerTest(TestBase):
+ @unicode_test
+ def test_hidden_frame_markers(self):
+ """Test that hidden frame markers are rendered in backtraces"""
+ self.build()
+ lldbutil.run_to_source_breakpoint(
----------------
charles-zablit wrote:
Added a new test case which has 2 hidden frames sections in the backtrace.
https://github.com/llvm/llvm-project/pull/181143
More information about the lldb-commits
mailing list