diff options
author | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-10-26 22:51:02 +0000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-10-26 22:51:02 +0000 |
commit | 0e2f7930fbffd3c7b200e5a99883a570a66b79bc (patch) | |
tree | ed938d0c00de65530fe949ddefba6b9bcdc0aa09 /clang/test/Preprocessor/macro_rparen_scan2.c | |
parent | 1de6a1f7d2ec7d14d7c27c86d9b5148d0346675a (diff) | |
download | bcm5719-llvm-0e2f7930fbffd3c7b200e5a99883a570a66b79bc.tar.gz bcm5719-llvm-0e2f7930fbffd3c7b200e5a99883a570a66b79bc.zip |
Convert a few tests to FileCheck for PR5307.
llvm-svn: 85170
Diffstat (limited to 'clang/test/Preprocessor/macro_rparen_scan2.c')
-rw-r--r-- | clang/test/Preprocessor/macro_rparen_scan2.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/test/Preprocessor/macro_rparen_scan2.c b/clang/test/Preprocessor/macro_rparen_scan2.c index 41748ac459b..30597a00973 100644 --- a/clang/test/Preprocessor/macro_rparen_scan2.c +++ b/clang/test/Preprocessor/macro_rparen_scan2.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -E %s | grep -F 'static int glob = (1 + 1 );' +// RUN: clang-cc -E %s | FileCheck %s #define R_PAREN ) @@ -6,3 +6,5 @@ static int glob = (1 + FUNC(1 R_PAREN ); +// CHECK: static int glob = (1 + 1 ); + |