================ @@ -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 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits