diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-25 20:34:08 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-25 20:34:08 +0000 |
commit | f282e72d4d55680dd82f3874b739fe0e02851435 (patch) | |
tree | 4aa201bce2ad5ba6ba178286ec533af5a50a974a /test/Preprocessor/hash_line.c | |
parent | 8b127d3f9baa6bef2068a3aa5923fe81cbfb9b11 (diff) |
FileCheck'ize tests
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173484 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/hash_line.c')
-rw-r--r-- | test/Preprocessor/hash_line.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Preprocessor/hash_line.c b/test/Preprocessor/hash_line.c index 4f724dfbba..64edae0d95 100644 --- a/test/Preprocessor/hash_line.c +++ b/test/Preprocessor/hash_line.c @@ -1,7 +1,10 @@ // The 1 and # should not go on the same line. -// RUN: %clang_cc1 %s -E | not grep "1 #" -// RUN: %clang_cc1 %s -E | grep '^1$' -// RUN: %clang_cc1 %s -E | grep '^ #$' +// RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s +// CHECK-NOT: 1{{.*}}# +// CHECK: {{^1$}} +// CHECK-NOT: 1{{.*}}# +// CHECK: {{^ #$}} +// CHECK-NOT: 1{{.*}}# 1 #define EMPTY EMPTY # |