forked from OSchip/llvm-project
12 lines
699 B
Plaintext
12 lines
699 B
Plaintext
REQUIRES: system-windows, msvc
|
|
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: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols %T/CompilandsTest.cpp.exe | FileCheck %s
|
|
RUN: env LLDB_USE_NATIVE_PDB_READER=0 lldb-test symbols %T/CompilandsTest.cpp.exe | FileCheck %s
|
|
|
|
; Link default libraries
|
|
|
|
CHECK: Module [[CU:.*]]
|
|
CHECK: {{^[0-9A-F]+}}: SymbolVendor pdb ([[CU]])
|
|
CHECK: {{^[0-9A-F]+}}: CompileUnit{{[{]0x[0-9a-f]+[}]}}, language = "c++", file = '{{.*}}\CompilandsTest.cpp'
|