
When files are synchronized locally as CRLF on Windows, grep didn't match the newline. Switched to FileCheck instead. Differential Revision: https://reviews.llvm.org/D61496 llvm-svn: 360467
11 lines
186 B
C
11 lines
186 B
C
// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
|
|
// CHECK: # define X 3
|
|
|
|
#define H #
|
|
#define D define
|
|
|
|
#define DEFINE(a, b) H D a b
|
|
|
|
DEFINE(X, 3)
|
|
|