README.txt
1These are debug info integration tests similar to the ones in the parent
2directory, except that these are designed to test compatibility between clang,
3lld, and cdb, the command line debugger that ships as part of the Microsoft
4Windows SDK. The debugger command language that cdb uses is very different from
5gdb and LLDB, so it's useful to be able to write some tests directly in the cdb
6command 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 -Z7
11// RUN: grep DE[B]UGGER: %s | sed -e 's/.*DE[B]UGGER: //' > %t.script
12// RUN: %cdb -cf %t.script %t.exe | FileCheck %s --check-prefixes=DEBUGGER,CHECK
13