forked from OSchip/llvm-project
[PDB] Make PDB lit tests use the new builder
Reviewers: zturner, stella.stamenova Reviewed By: zturner Tags: #lldb Differential Revision: https://reviews.llvm.org/D54942 llvm-svn: 348386
This commit is contained in:
parent
b3e14de487
commit
899b3afaca
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows
|
||||
RUN: %msvc_cl /Zi /GS- /c %S/Inputs/AstRestoreTest.cpp /Fo%t.obj
|
||||
RUN: %msvc_link /debug:full /nodefaultlib /entry:main %t.obj /out:%t.exe
|
||||
REQUIRES: system-windows, msvc
|
||||
RUN: %build --compiler=msvc --nodefaultlib --output=%t.exe %S/Inputs/AstRestoreTest.cpp
|
||||
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=ENUM %s
|
||||
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=GLOBAL %s
|
||||
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix=BASE %s
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, lld
|
||||
RUN: %clang_cl -m32 /Zi /GS- /c %S/Inputs/CallingConventionsTest.cpp /o %t.obj
|
||||
RUN: lld-link /debug:full /nodefaultlib /entry:main %t.obj /out:%t.exe
|
||||
RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp
|
||||
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck %s
|
||||
|
||||
CHECK: Module: {{.*}}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
REQUIRES: msvc
|
||||
RUN: %clang_cl -m32 /Z7 /c /GS- %S/Inputs/ClassLayoutTest.cpp /o %T/ClassLayoutTest.cpp.obj
|
||||
RUN: %msvc_link %T/ClassLayoutTest.cpp.obj /DEBUG /nodefaultlib /ENTRY:main /OUT:%T/ClassLayoutTest.cpp.exe
|
||||
REQUIRES: system-windows, msvc
|
||||
RUN: %build --compiler=clang-cl --mode=compile --arch=32 --nodefaultlib --output=%T/ClassLayoutTest.cpp.obj %S/Inputs/ClassLayoutTest.cpp
|
||||
RUN: %build --compiler=msvc --mode=link --arch=32 --nodefaultlib --output=%T/ClassLayoutTest.cpp.exe %T/ClassLayoutTest.cpp.obj
|
||||
RUN: lldb-test symbols %T/ClassLayoutTest.cpp.exe | FileCheck %s
|
||||
RUN: lldb-test symbols %T/ClassLayoutTest.cpp.exe | FileCheck --check-prefix=ENUM %s
|
||||
RUN: lldb-test symbols %T/ClassLayoutTest.cpp.exe | FileCheck --check-prefix=UNION %s
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl /Z7 /c %S/Inputs/CompilandsTest.cpp /o %T/CompilandsTest.cpp.obj
|
||||
RUN: %msvc_link /debug:full /nodefaultlib /entry:main %T/CompilandsTest.cpp.obj /out:%T/CompilandsTest.cpp.exe
|
||||
RUN: %build --compiler=clang-cl --mode=compile --arch=32 --nodefaultlib --output=%T/CompilandsTest.cpp.obj %S/Inputs/CompilandsTest.cpp
|
||||
RUN: %build --compiler=msvc --mode=link --arch=32 --nodefaultlib --output=%T/CompilandsTest.cpp.exe %T/CompilandsTest.cpp.obj
|
||||
RUN: lldb-test symbols %T/CompilandsTest.cpp.exe | FileCheck %s
|
||||
|
||||
; Link default libraries
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl -m32 /Z7 /c /GS- %S/Inputs/SimpleTypesTest.cpp /o %T/SimpleTypesTest.cpp.enums.obj
|
||||
RUN: %msvc_link %T/SimpleTypesTest.cpp.enums.obj /DEBUG /nodefaultlib /ENTRY:main /OUT:%T/SimpleTypesTest.cpp.enums.exe
|
||||
RUN: %build --compiler=msvc --arch=32 --nodefaultlib --output=%T/SimpleTypesTest.cpp.enums.exe %S/Inputs/SimpleTypesTest.cpp
|
||||
RUN: lldb-test symbols %T/SimpleTypesTest.cpp.enums.exe | FileCheck %s
|
||||
|
||||
; FIXME: PDB does not have information about scoped enumeration (Enum class) so the
|
||||
|
@ -8,35 +7,35 @@ RUN: lldb-test symbols %T/SimpleTypesTest.cpp.enums.exe | FileCheck %s
|
|||
|
||||
CHECK: Module [[CU:.*]]
|
||||
CHECK-DAG: {{^[0-9A-F]+}}: SymbolVendor ([[CU]])
|
||||
CHECK: Type{{.*}} , name = "Enum", size = 4, decl = SimpleTypesTest.cpp:19, compiler_type = {{.*}} enum Enum {
|
||||
CHECK: Type{{.*}} , name = "Enum", size = 4, decl = simpletypestest.cpp:19, compiler_type = {{.*}} enum Enum {
|
||||
CHECK-NEXT: RED,
|
||||
CHECK-NEXT: GREEN,
|
||||
CHECK-NEXT: BLUE
|
||||
CHECK-NEXT:}
|
||||
|
||||
CHECK: Type{{.*}} , name = "EnumConst", size = 4, decl = SimpleTypesTest.cpp:22, compiler_type = {{.*}} enum EnumConst {
|
||||
CHECK: Type{{.*}} , name = "EnumConst", size = 4, decl = simpletypestest.cpp:22, compiler_type = {{.*}} enum EnumConst {
|
||||
CHECK-NEXT: LOW,
|
||||
CHECK-NEXT: NORMAL,
|
||||
CHECK-NEXT: HIGH
|
||||
CHECK-NEXT:}
|
||||
|
||||
CHECK: Type{{.*}} , name = "EnumEmpty", size = 4, decl = SimpleTypesTest.cpp:25, compiler_type = {{.*}} enum EnumEmpty {
|
||||
CHECK: Type{{.*}} , name = "EnumEmpty", size = 4, decl = simpletypestest.cpp:25, compiler_type = {{.*}} enum EnumEmpty {
|
||||
CHECK-NEXT:}
|
||||
|
||||
CHECK: Type{{.*}} , name = "EnumUChar", size = 1, decl = SimpleTypesTest.cpp:28, compiler_type = {{.*}} enum EnumUChar {
|
||||
CHECK: Type{{.*}} , name = "EnumUChar", size = 1, decl = simpletypestest.cpp:28, compiler_type = {{.*}} enum EnumUChar {
|
||||
CHECK-NEXT: ON,
|
||||
CHECK-NEXT: OFF,
|
||||
CHECK-NEXT: AUTO
|
||||
CHECK-NEXT:}
|
||||
|
||||
; Note that `enum EnumClass` is tested instead of `enum class EnumClass`
|
||||
CHECK: Type{{.*}} , name = "EnumClass", size = 4, decl = SimpleTypesTest.cpp:32, compiler_type = {{.*}} enum EnumClass {
|
||||
CHECK: Type{{.*}} , name = "EnumClass", size = 4, decl = simpletypestest.cpp:32, compiler_type = {{.*}} enum EnumClass {
|
||||
CHECK-NEXT: YES,
|
||||
CHECK-NEXT: NO,
|
||||
CHECK-NEXT: DEFAULT
|
||||
CHECK-NEXT:}
|
||||
|
||||
CHECK: Type{{.*}} , name = "EnumStruct", size = 4, decl = SimpleTypesTest.cpp:35, compiler_type = {{.*}} enum EnumStruct {
|
||||
CHECK: Type{{.*}} , name = "EnumStruct", size = 4, decl = simpletypestest.cpp:35, compiler_type = {{.*}} enum EnumStruct {
|
||||
CHECK-NEXT: red,
|
||||
CHECK-NEXT: blue,
|
||||
CHECK-NEXT: black
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %msvc_cl /Zi /GS- /c %S/Inputs/ExpressionsTest.cpp /Fo%t.obj
|
||||
RUN: %msvc_link /debug:full /nodefaultlib /entry:main %t.obj /out:%t.exe
|
||||
RUN: %build --compiler=msvc --nodefaultlib --output=%t.exe %S/Inputs/ExpressionsTest.cpp
|
||||
RUN: %lldb -b -s %S/Inputs/ExpressionsTest0.script -s %S/Inputs/ExpressionsTest1.script -s %S/Inputs/ExpressionsTest2.script -- %t.exe 2>&1 | FileCheck %s
|
||||
|
||||
// Check the variable value through `print`
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl -m32 /Z7 /c /GS- %S/Inputs/FuncSymbolsTestMain.cpp /o %T/FuncSymbolsTestMain.cpp.obj
|
||||
RUN: %clang_cl -m32 /Z7 /c /GS- %S/Inputs/FuncSymbols.cpp /o %T/FuncSymbols.cpp.obj
|
||||
RUN: %msvc_link %T/FuncSymbolsTestMain.cpp.obj %T/FuncSymbols.cpp.obj /DEBUG /nodefaultlib /Entry:main /OUT:%T/FuncSymbolsTest.exe
|
||||
REQUIRES: system-windows, lld
|
||||
RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%T/FuncSymbolsTest.exe %S/Inputs/FuncSymbolsTestMain.cpp %S/Inputs/FuncSymbols.cpp
|
||||
RUN: lldb-test symbols %T/FuncSymbolsTest.exe | FileCheck --check-prefix=CHECK-ONE %s
|
||||
RUN: lldb-test symbols %T/FuncSymbolsTest.exe | FileCheck --check-prefix=CHECK-TWO %s
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, lld
|
||||
RUN: %clang_cl /c /Zi %S/Inputs/FunctionNestedBlockTest.cpp /o %t.obj
|
||||
RUN: lld-link /debug:full /nodefaultlib /entry:main %t.obj /out:%t.exe
|
||||
RUN: %build --compiler=clang-cl --nodefaultlib --output=%t.exe %S/Inputs/FunctionNestedBlockTest.cpp
|
||||
RUN: lldb-test symbols -find=function -file FunctionNestedBlockTest.cpp -line 4 %t.exe | FileCheck --check-prefix=CHECK-FUNCTION %s
|
||||
RUN: lldb-test symbols -find=block -file FunctionNestedBlockTest.cpp -line 4 %t.exe | FileCheck --check-prefix=CHECK-BLOCK %s
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl -m32 /Z7 /c /GS- %S/Inputs/PointerTypeTest.cpp /o %T/PointerTypeTest.cpp.obj
|
||||
RUN: %msvc_link %T/PointerTypeTest.cpp.obj /DEBUG /nodefaultlib /ENTRY:main /OUT:%T/PointerTypeTest.cpp.exe
|
||||
RUN: %build --compiler=clang-cl --mode=compile --arch=32 --nodefaultlib --output=%T/PointerTypeTest.cpp.obj %S/Inputs/PointerTypeTest.cpp
|
||||
RUN: %build --compiler=msvc --mode=link --arch=32 --nodefaultlib --output=%T/PointerTypeTest.cpp.exe %T/PointerTypeTest.cpp.obj
|
||||
RUN: lldb-test symbols %T/PointerTypeTest.cpp.exe | FileCheck %s
|
||||
RUN: lldb-test symbols %T/PointerTypeTest.cpp.exe | FileCheck --check-prefix=MAIN-ST-F %s
|
||||
RUN: lldb-test symbols %T/PointerTypeTest.cpp.exe | FileCheck --check-prefix=MAIN-ST %s
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl -m32 /Z7 /c /GS- %S/Inputs/TypeQualsTest.cpp /o %T/TypeQualsTest.cpp.obj
|
||||
RUN: %msvc_link %T/TypeQualsTest.cpp.obj /DEBUG /nodefaultlib /ENTRY:main /OUT:%T/TypeQualsTest.cpp.exe
|
||||
RUN: %build --compiler=clang-cl --mode=compile --arch=32 --nodefaultlib --output=%T/TypeQualsTest.cpp.obj %S/Inputs/TypeQualsTest.cpp
|
||||
RUN: %build --compiler=msvc --mode=link --arch=32 --nodefaultlib --output=%T/TypeQualsTest.cpp.exe %T/TypeQualsTest.cpp.obj
|
||||
RUN: lldb-test symbols %T/TypeQualsTest.cpp.exe | FileCheck %s
|
||||
|
||||
CHECK: Module [[MOD:.*]]
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl -m32 /Z7 /c /GS- %S/Inputs/SimpleTypesTest.cpp /o %T/SimpleTypesTest.cpp.typedefs.obj
|
||||
RUN: %msvc_link %T/SimpleTypesTest.cpp.typedefs.obj /DEBUG /nodefaultlib /ENTRY:main /OUT:%T/SimpleTypesTest.cpp.typedefs.exe
|
||||
RUN: %build --compiler=msvc --arch=32 --nodefaultlib --output=%T/SimpleTypesTest.cpp.typedefs.exe %S/Inputs/SimpleTypesTest.cpp
|
||||
RUN: lldb-test symbols %T/SimpleTypesTest.cpp.typedefs.exe | FileCheck %s
|
||||
|
||||
; Generate 32-bit target
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl /Zi %S/Inputs/UdtLayoutTest.cpp /c /o %t.obj
|
||||
RUN: %msvc_link /DEBUG:FULL /out:%t.exe %t.obj
|
||||
REQUIRES: system-windows, lld
|
||||
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) int C::abc = 123
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl /Zi %S/Inputs/VariablesLocationsTest.cpp /c /o %t.obj
|
||||
RUN: %msvc_link /debug:full %t.obj /out:%t.exe
|
||||
REQUIRES: system-windows, lld
|
||||
RUN: %build --compiler=clang-cl --output=%t.exe %S/Inputs/VariablesLocationsTest.cpp
|
||||
RUN: %lldb -b -s %S/Inputs/VariablesLocationsTest.script -- %t.exe | FileCheck %s
|
||||
|
||||
CHECK: g_var = 2222
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl -m64 /Z7 /c /GS- %S/Inputs/VariablesTest.cpp /o %T/VariablesTest.cpp.obj
|
||||
RUN: %msvc_link %T/VariablesTest.cpp.obj /DEBUG /nodefaultlib /ENTRY:main /OUT:%T/VariablesTest.cpp.exe
|
||||
RUN: %build --compiler=clang-cl --mode=compile --arch=64 --nodefaultlib --output=%T/VariablesTest.cpp.obj %S/Inputs/VariablesTest.cpp
|
||||
RUN: %build --compiler=msvc --mode=link --arch=64 --nodefaultlib --output=%T/VariablesTest.cpp.exe %T/VariablesTest.cpp.obj
|
||||
RUN: lldb-test symbols %T/VariablesTest.cpp.exe | FileCheck %s
|
||||
|
||||
CHECK: Module [[MOD:.*]]
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
REQUIRES: system-windows, msvc
|
||||
RUN: %clang_cl /Zi %S/Inputs/VBases.cpp /c /o %t.obj
|
||||
RUN: %msvc_link /debug:full %t.obj /out:%t.exe
|
||||
REQUIRES: system-windows, lld
|
||||
RUN: %build --compiler=clang-cl --output=%t.exe %S/Inputs/VBases.cpp
|
||||
RUN: %lldb -b -s %S/Inputs/VBases.script -- %t.exe | FileCheck %s
|
||||
|
||||
CHECK: {
|
||||
|
|
Loading…
Reference in New Issue