diff options
author | Reid Kleckner <reid@kleckner.net> | 2013-04-10 21:10:39 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2013-04-10 21:10:39 +0000 |
commit | 2c5a38e3bc347de64f694671bbb1097bd6544456 (patch) | |
tree | 4b202fbf63567ade606ac61ecf48e0d1be0b6b9a /test/CodeGen | |
parent | 0e7f2bb1810a4e5e62a8e247460cd26f981d0827 (diff) |
FileCheck-ify some clang grep tests that use double quotes
The escaping interaction between Python and grep doesn't work on my
system. This change fixes the tests for me.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179214 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/2010-02-10-PointerName.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/CodeGen/2010-02-10-PointerName.c b/test/CodeGen/2010-02-10-PointerName.c index 2837de4b8b..2321c01c6f 100644 --- a/test/CodeGen/2010-02-10-PointerName.c +++ b/test/CodeGen/2010-02-10-PointerName.c @@ -1,4 +1,6 @@ -// RUN: %clang_cc1 %s -emit-llvm -g -o - | grep DW_TAG_pointer_type | grep -v {"char"} +// RUN: %clang_cc1 %s -emit-llvm -g -o - | FileCheck %s +// CHECK: DW_TAG_pointer_type +// CHECK-NOT: {"char"} char i = 1; void foo() { |