1REQUIRES: target-windows, msvc 2RUN: %build --compiler=clang-cl --mode=compile --arch=32 --nodefaultlib --output=%T/CompilandsTest.cpp.obj %S/Inputs/CompilandsTest.cpp 3RUN: %build --compiler=msvc --mode=link --arch=32 --nodefaultlib --output=%T/CompilandsTest.cpp.exe %T/CompilandsTest.cpp.obj 4RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols %T/CompilandsTest.cpp.exe | FileCheck %s 5RUN: lldb-test symbols %T/CompilandsTest.cpp.exe | FileCheck %s 6 7; Link default libraries 8 9CHECK: Module [[CU:.*]] 10CHECK: SymbolFile {{(native-)?}}pdb ([[CU]]) 11CHECK: {{^[0-9A-F]+}}: CompileUnit{{[{]0x[0-9a-f]+[}]}}, language = "c++", file = '{{.*}}\CompilandsTest.cpp' 12