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

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Tue May 20 06:48:50 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):
----------------
Michael137 wrote:

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

I would suggest having them in the same test if possible. Feels easier to maintain and that's what we do in other places already

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


More information about the lldb-commits mailing list