mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 13:35:42 -04:00

Following r363007, which reverted r362998, r362996, and r362994, reapply with adjustments for the CRLF differences encountered with Windows. Namely, the `-b` option of `diff` is employed, and the `grep` patterns have `$` replaced with `[[:space:]]*$`. llvm-svn: 363069
11 lines
447 B
C++
11 lines
447 B
C++
// RUN: %clang_analyze_cc1 -analyzer-checker=debug.ExprInspection -analyzer-output=plist-multi-file %s -o %t.plist
|
|
// RUN: tail -n +11 %t.plist | %normalize_plist | diff -ub %S/Inputs/expected-plists/plist-diagnostics-include-check.cpp.plist -
|
|
|
|
#include "Inputs/include/plist-diagnostics-include-check-macro.h"
|
|
|
|
void foo() {
|
|
PlistCheckMacro()
|
|
#define PLIST_DEF_MACRO .run();
|
|
#include "Inputs/include/plist-diagnostics-include-check-macro.def"
|
|
}
|