[Lldb-commits] [lldb] 96d1178 - [lldb][test] Fix expected mangling for AsmLabel_CtorDtor test on Windows (again)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 1 01:22:52 PDT 2025
Author: Michael Buch
Date: 2025-08-01T09:22:40+01:00
New Revision: 96d117859c1cc3fb81897d3d72f7c4692b7ee930
URL: https://github.com/llvm/llvm-project/commit/96d117859c1cc3fb81897d3d72f7c4692b7ee930
DIFF: https://github.com/llvm/llvm-project/commit/96d117859c1cc3fb81897d3d72f7c4692b7ee930.diff
LOG: [lldb][test] Fix expected mangling for AsmLabel_CtorDtor test on Windows (again)
Added:
Modified:
lldb/unittests/Symbol/TestTypeSystemClang.cpp
Removed:
################################################################################
diff --git a/lldb/unittests/Symbol/TestTypeSystemClang.cpp b/lldb/unittests/Symbol/TestTypeSystemClang.cpp
index c8338c290ee3b..b993b82612497 100644
--- a/lldb/unittests/Symbol/TestTypeSystemClang.cpp
+++ b/lldb/unittests/Symbol/TestTypeSystemClang.cpp
@@ -1170,7 +1170,7 @@ TEST_F(TestTypeSystemClang, AsmLabel_CtorDtor) {
EXPECT_STREQ(m_ast->DeclGetMangledName(ctor_nolabel).GetCString(),
"??0S@@QEAA at XZ");
EXPECT_STREQ(m_ast->DeclGetMangledName(dtor_nolabel).GetCString(),
- "??1S@@QEAA at XZ");
+ "??_DS@@QEAAXXZ");
#else
EXPECT_STREQ(m_ast->DeclGetMangledName(ctor_nolabel).GetCString(),
"_ZN1SC1Ev");
More information about the lldb-commits
mailing list