[Lldb-commits] [lldb] 5508595 - [lldb] fix test expectation broken by clang fix at D110216

Matheus Izvekov via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 11 16:47:42 PST 2021


Author: Matheus Izvekov
Date: 2021-11-12T01:47:29+01:00
New Revision: 55085952175ed3b029097a0594acc4e34a5df218

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

LOG: [lldb] fix test expectation broken by clang fix at D110216

Signed-off-by: Matheus Izvekov <mizvekov at gmail.com>

Differential Revision: https://reviews.llvm.org/D113722

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp b/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp
index 75f9a029d448c..69d8d17179fe9 100644
--- a/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp
+++ b/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp
@@ -118,7 +118,7 @@ auto aab = &unary<int(*)[5]>;
 auto aac = &unary<int(&&)[5]>;
 // CHECK: (void (*)(int (&&)[5])) aac = {{.*}}
 auto aad = &unary<int(*const)[5]>;
-// CHECK: (void (*)(int (*)[5])) aad = {{.*}}
+// CHECK: (void (*)(int (*const)[5])) aad = {{.*}}
 
 
 // same test cases with return values, note we can't overload on return type


        


More information about the lldb-commits mailing list