[Lldb-commits] [lldb] 64f002c - Follow-up fixes for aee49255074fd4ef38d97e6e70cbfbf2f9fd0fa7

David Blaikie via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 21 13:01:22 PDT 2021


Author: David Blaikie
Date: 2021-10-21T13:00:56-07:00
New Revision: 64f002c6d36d674a924c6116ec0b2d731cc3981c

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

LOG: Follow-up fixes for aee49255074fd4ef38d97e6e70cbfbf2f9fd0fa7

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/PDB/typedefs.test
    lldb/test/Shell/SymbolFile/PDB/udt-layout.test

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/PDB/typedefs.test b/lldb/test/Shell/SymbolFile/PDB/typedefs.test
index 5f70d87823049..a0106dd381c81 100644
--- a/lldb/test/Shell/SymbolFile/PDB/typedefs.test
+++ b/lldb/test/Shell/SymbolFile/PDB/typedefs.test
@@ -16,7 +16,7 @@ CHECK: SymbolFile pdb ([[MOD]])
 CHECK-DAG: name = "char32_t", size = 4, compiler_type = {{.*}} char32_t
 CHECK-DAG: name = "char16_t", size = 2, compiler_type = {{.*}} char16_t
 CHECK-DAG: Type{{.*}} , name = "unsigned long", size = 4, compiler_type = {{.*}} unsigned long
-CHECK-DAG: Type{{.*}} , size = 40, compiler_type = {{.*}} unsigned long [10]
+CHECK-DAG: Type{{.*}} , size = 40, compiler_type = {{.*}} unsigned long[10]
 CHECK-DAG: Type{{.*}} , name = "ULongArrayTypedef", compiler_type = {{.*}} typedef ULongArrayTypedef
 
 ; Note: compiler_type of `long double` is represented by the one for `double`

diff  --git a/lldb/test/Shell/SymbolFile/PDB/udt-layout.test b/lldb/test/Shell/SymbolFile/PDB/udt-layout.test
index f114c200d0219..84414cbf8440d 100644
--- a/lldb/test/Shell/SymbolFile/PDB/udt-layout.test
+++ b/lldb/test/Shell/SymbolFile/PDB/udt-layout.test
@@ -3,7 +3,7 @@ RUN: %build --compiler=clang-cl --output=%t.exe %S/Inputs/UdtLayoutTest.cpp
 RUN: %lldb -b -s %S/Inputs/UdtLayoutTest.script -- %t.exe | FileCheck %s
 
 CHECK:(int) C::abc = 123
-CHECK:(List [16]) ls = {
+CHECK:(List[16]) ls = {
 CHECK:  [15] = {
 CHECK:    Prev = nullptr
 CHECK:    Next = nullptr


        


More information about the lldb-commits mailing list