diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-28 20:40:50 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-28 20:40:50 +0000 |
commit | 03efd9d034c2e2b698fd087c937f98d2637dcb11 (patch) | |
tree | d6b749bb5fd4de7e5b0835c5ca2ebd72bde057a9 /test/Lexer/token-concat.c | |
parent | bde67cfdf05f7c569661e7a490b0b0811ac1ec56 (diff) |
FileCheck'ize and merge tests
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Lexer/token-concat.c')
-rw-r--r-- | test/Lexer/token-concat.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/Lexer/token-concat.c b/test/Lexer/token-concat.c index 551af950ae..0a2cbeef6f 100644 --- a/test/Lexer/token-concat.c +++ b/test/Lexer/token-concat.c @@ -1,4 +1,11 @@ -// RUN: %clang_cc1 -E -x c -o %t %s -// RUN: grep 'IDENT.2' %t +// RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s IDENT.2 +// CHECK: {{^}}IDENT.2{{$}} + + +// PR4395 +#define X .* +X +// CHECK: {{^}}.*{{$}} + |