[Lldb-commits] [lldb] a3f8359 - [lldb][test] Fix NativePDB/inline_sites_live.cpp inlined frame format

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Sun Apr 13 22:32:48 PDT 2025


Author: Michael Buch
Date: 2025-04-14T06:31:50+01:00
New Revision: a3f8359410eb7e14c4a52b47f36e433af40c05e9

URL: https://github.com/llvm/llvm-project/commit/a3f8359410eb7e14c4a52b47f36e433af40c05e9
DIFF: https://github.com/llvm/llvm-project/commit/a3f8359410eb7e14c4a52b47f36e433af40c05e9.diff

LOG: [lldb][test] Fix NativePDB/inline_sites_live.cpp inlined frame format

Adjust after https://github.com/llvm/llvm-project/pull/135343

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/NativePDB/inline_sites_live.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/NativePDB/inline_sites_live.cpp b/lldb/test/Shell/SymbolFile/NativePDB/inline_sites_live.cpp
index 906f3d7dff0a5..4a06e6350b00d 100644
--- a/lldb/test/Shell/SymbolFile/NativePDB/inline_sites_live.cpp
+++ b/lldb/test/Shell/SymbolFile/NativePDB/inline_sites_live.cpp
@@ -23,11 +23,11 @@ int main(int argc, char** argv) {
 }
 
 // CHECK:      * thread #1, {{.*}}stop reason = breakpoint 1
-// CHECK-NEXT:    frame #0: {{.*}}`main [inlined] bar(param=2)
+// CHECK-NEXT:    frame #0: {{.*}}`bar(param=2)
 // CHECK:      (lldb) expression param
 // CHECK-NEXT: (int) $0 = 2
 // CHECK:      * thread #1, {{.*}}stop reason = breakpoint 2
-// CHECK-NEXT:    frame #0: {{.*}}`main [inlined] foo(param=1)
+// CHECK-NEXT:    frame #0: {{.*}}`foo(param=1)
 // CHECK:      (lldb) expression param
 // CHECK-NEXT: (int) $1 = 1
 // CHECK-NEXT: (lldb) expression local


        


More information about the lldb-commits mailing list