[Lldb-commits] [lldb] [LLDB] Add formatters for MSVC STL unordered containers (PR #149519)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 21 07:06:05 PDT 2025


================
@@ -127,8 +123,16 @@ def look_for_content_and_continue(self, var_name, patterns):
 
     @add_test_categories(["libstdcxx"])
     def test_with_run_command_libstdcpp(self):
-        self.do_test_with_run_command(USE_LIBSTDCPP)
+        self.build(dictionary={"USE_LIBSTDCPP": 1})
+        self.do_test_with_run_command()
 
     @add_test_categories(["libc++"])
     def test_with_run_command_libcpp(self):
-        self.do_test_with_run_command(USE_LIBCPP)
+        self.build(dictionary={"USE_LIBCPP": 1})
+        self.do_test_with_run_command()
----------------
Michael137 wrote:

Huh looks like we're not actually testing the `__debug` libstdc++ version. Probably because we don't have support for it anyway. Might be nice to add an XFAILed test for it here.

Ofc not necessary as part of this PR

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


More information about the lldb-commits mailing list