brintos

brintos / llvm-project-archived public Read only

0
0
Text · 676 B · 4ef69c0 Raw
13 lines · plain
1These are debug info integration tests similar to the ones in the parent2directory, except that these are designed to test compatibility between clang,3lld, and cdb, the command line debugger that ships as part of the Microsoft4Windows SDK. The debugger command language that cdb uses is very different from5gdb and LLDB, so it's useful to be able to write some tests directly in the cdb6command language.7 8An example header for a CDB test, of which there are currently none:9 10// RUN: %clang_cl %s -o %t.exe -fuse-ld=lld -Z711// RUN: grep DE[B]UGGER: %s | sed -e 's/.*DE[B]UGGER: //' > %t.script12// RUN: %cdb -cf %t.script %t.exe | FileCheck %s --check-prefixes=DEBUGGER,CHECK13