[Lldb-commits] [lldb] [lldb] optionally match the `__debug` namespace for libstdc++ containers. (PR #140727)

Ebuka Ezike via lldb-commits lldb-commits at lists.llvm.org
Tue May 20 06:59:16 PDT 2025


================
@@ -0,0 +1,300 @@
+"""
+Test lldb data formatter subsystem.
+"""
+
+from abc import abstractmethod
+from lldbsuite.test.decorators import add_test_categories, expectedFailureAll
+from lldbsuite.test.lldbtest import (
+    CURRENT_EXECUTABLE_SET,
+    RUN_SUCCEEDED,
+    STOPPED_DUE_TO_BREAKPOINT,
+    TestBase,
+    line_number,
+)
+from lldbsuite.test import lldbutil
+
+
+class StdMapDataFormatterBase(TestBase):
----------------
da-viper wrote:

> The "no debug" version is the one compiled without _GLIBCXX_DEBUG but still with debug-info?

Yes it is. 

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


More information about the lldb-commits mailing list