diff options
author | Chris Lattner <sabre@nondot.org> | 2009-05-25 16:14:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-05-25 16:14:52 +0000 |
commit | c5b7e8d1c0ebbdbb3e6c81616498b9acc612e157 (patch) | |
tree | 4b8876f81974dffa7c23cd90e1ffaa34cd6fe952 /test/Preprocessor/assembler-with-cpp.c | |
parent | 4c3ba6c1944e6a4758f1b3a0aec8a7ff4c561051 (diff) |
fix this test to fail when the patch isn't applied.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/assembler-with-cpp.c')
-rw-r--r-- | test/Preprocessor/assembler-with-cpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Preprocessor/assembler-with-cpp.c b/test/Preprocessor/assembler-with-cpp.c index bb16880578..00080cce9b 100644 --- a/test/Preprocessor/assembler-with-cpp.c +++ b/test/Preprocessor/assembler-with-cpp.c @@ -64,7 +64,7 @@ T7(foo) // RUN: grep 'T7 "foo"' %t && // Concatenation with period doesn't leave a space -// RUN: grep '.T8' %t && +// RUN: grep -F '.T8' %t && #define T8(A,B) A ## B T8(.,T8) |