forked from OSchip/llvm-project
Improve test portability; I can't figure out how to get the regexp library to
match $ correctly with \r\n, unfortunately. llvm-svn: 90907
This commit is contained in:
parent
0aa75680d6
commit
a8ad0a90fb
|
@ -1,11 +1,11 @@
|
|||
// RUN: clang-cc -E -dM %s -o - | FileCheck %s -strict-whitespace
|
||||
|
||||
// Space at end even without expansion tokens
|
||||
// CHECK: {{#define A[(]x[)] $}}
|
||||
// CHECK: #define A(x)
|
||||
#define A(x)
|
||||
|
||||
// Space before expansion list.
|
||||
// CHECK: {{#define B[(]x,y[)] x y$}}
|
||||
// CHECK: #define B(x,y) x y
|
||||
#define B(x,y)x y
|
||||
|
||||
// No space in argument list.
|
||||
|
|
Loading…
Reference in New Issue