[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / debuginfo-tests / win_cdb-tests / README.txt
blob4ef69c09660d79eef4a120c9e3e38b07aacdd11c
1 These are debug info integration tests similar to the ones in the parent
2 directory, except that these are designed to test compatibility between clang,
3 lld, and cdb, the command line debugger that ships as part of the Microsoft
4 Windows SDK. The debugger command language that cdb uses is very different from
5 gdb and LLDB, so it's useful to be able to write some tests directly in the cdb
6 command language.
8 An example header for a CDB test, of which there are currently none:
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