[Lldb-commits] [lldb] 8bd7281 - [lldb][test] explicit-member-function-quals.cpp: fix expected output

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 31 04:40:42 PST 2025


Author: Michael Buch
Date: 2025-01-31T12:38:07Z
New Revision: 8bd728180cadbab9fe11cd853670e488827ee302

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

LOG: [lldb][test] explicit-member-function-quals.cpp: fix expected output

The `type lookup` output looks different.

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/DWARF/x86/explicit-member-function-quals.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/DWARF/x86/explicit-member-function-quals.cpp b/lldb/test/Shell/SymbolFile/DWARF/x86/explicit-member-function-quals.cpp
index 103aa0a9684749..5d1222795dd834 100644
--- a/lldb/test/Shell/SymbolFile/DWARF/x86/explicit-member-function-quals.cpp
+++ b/lldb/test/Shell/SymbolFile/DWARF/x86/explicit-member-function-quals.cpp
@@ -9,9 +9,9 @@
 // CHECK:      (lldb) type lookup Foo
 // CHECK-NEXT: struct Foo {
 // CHECK-NEXT:      void Method(Foo);
-// CHECK-NEXT:      void cMethod(Foo const&);
-// CHECK-NEXT:      void vMethod(Foo volatile&);
-// CHECK-NEXT:      void cvMethod(const Foo volatile&) const volatile;
+// CHECK-NEXT:      void cMethod(const Foo &) const;
+// CHECK-NEXT:      void vMethod(volatile Foo &) volatile;
+// CHECK-NEXT:      void cvMethod(const volatile Foo &) const volatile;
 // CHECK-NEXT: }
 
 struct Foo {


        


More information about the lldb-commits mailing list