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 | a8ad0a90fb9f0a2d462273b0ebe99370fd0f9cbe (patch) | |
tree | d00833bbaf3e1070f7fcebbeae0b7cb7427629a7 /clang/test/Preprocessor/dump_macros.c | |
parent | 0aa75680d648c49dacfb6da2c5b4d06622a3d0c5 (diff) | |
download | bcm5719-llvm-a8ad0a90fb9f0a2d462273b0ebe99370fd0f9cbe.tar.gz bcm5719-llvm-a8ad0a90fb9f0a2d462273b0ebe99370fd0f9cbe.zip |
Improve test portability; I can't figure out how to get the regexp library to
match $ correctly with \r\n, unfortunately.
llvm-svn: 90907
Diffstat (limited to 'clang/test/Preprocessor/dump_macros.c')
-rw-r--r-- | clang/test/Preprocessor/dump_macros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Preprocessor/dump_macros.c b/clang/test/Preprocessor/dump_macros.c index b4d29061272..5908fec4b68 100644 --- a/clang/test/Preprocessor/dump_macros.c +++ b/clang/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. |