[Lldb-commits] [lldb] [lldb] add a marker before hidden frames (PR #181143)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 13 01:02:27 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(
----------------
Michael137 wrote:
One additional test-case we'd want is a backtrace with 2 sets of hidden frames. E.g., the `target()` method calling into another `std::function`
https://github.com/llvm/llvm-project/pull/181143
More information about the lldb-commits
mailing list