diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-09 00:04:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-09 00:04:46 +0000 |
commit | a498ca67b3d6bb65443c00ef8aa8e3c83ef19b6d (patch) | |
tree | 7daa0ac664ea0130bc687e1b3a52cb6bc9100193 | |
parent | 4cbf9d43cc47bb7a070c5c5026521d7d6a8f73c7 (diff) |
Improve test portability; I can't figure out how to get the regexp library to
match $ correctly with \r\n, unfortunately.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90907 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Preprocessor/dump_macros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Preprocessor/dump_macros.c b/test/Preprocessor/dump_macros.c index b4d2906127..5908fec4b6 100644 --- a/test/Preprocessor/dump_macros.c +++ b/test/Preprocessor/dump_macros.c @@ -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. |