[Lldb-commits] [lldb] [lldb] Add std::*_ordering summary providers (PR #174195)

Sergei Druzhkov via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 2 09:29:43 PST 2026


================
@@ -0,0 +1,42 @@
+"""
+Test std::*_ordering summary.
+"""
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class StdOrderingTestCase(TestBase):
+    def do_test(self):
+        lldbutil.run_to_source_breakpoint(
+            self, "// break here", lldb.SBFileSpec("main.cpp")
+        )
+
+        self.expect(
+            "frame variable",
+            substrs=[
----------------
DrSergei wrote:

Fixed

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


More information about the lldb-commits mailing list