[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 27 01:42:36 PDT 2025
================
@@ -19,9 +19,21 @@ def setUp(self):
@add_test_categories(["libstdcxx"])
@expectedFailureAll(bugnumber="llvm.org/pr50861", compiler="gcc")
def test_with_run_command(self):
+ self.with_run_command({})
+
+ @add_test_categories(["libstdcxx"])
+ @expectedFailureAll(bugnumber="llvm.org/pr50861", compiler="gcc")
+ def test_with_run_command_debug(self):
+ build_args = {"CXXFLAGS_EXTRAS": "-D_GLIBCXX_DEBUG"}
+ self.with_run_command(build_args)
+
+ def with_run_command(self, dictionary: dict):
----------------
Michael137 wrote:
Same applies to the other tests
https://github.com/llvm/llvm-project/pull/140727
More information about the lldb-commits
mailing list