aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/ListOfList.td
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-08-22 20:46:05 +0000
committerBill Wendling <isanbard@gmail.com>2013-08-22 20:46:05 +0000
commitb4be7f6b04c990d6bd969e7304d350de45c87f04 (patch)
treeb656cdc3a28824063e039346c1785237fbb66609 /test/TableGen/ListOfList.td
parent344cfb4db4b22f3330cbfc5ccb5e1149cd4e17e3 (diff)
downloadexternal_llvm-b4be7f6b04c990d6bd969e7304d350de45c87f04.zip
external_llvm-b4be7f6b04c990d6bd969e7304d350de45c87f04.tar.gz
external_llvm-b4be7f6b04c990d6bd969e7304d350de45c87f04.tar.bz2
FileCheckize some tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189060 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/ListOfList.td')
-rw-r--r--test/TableGen/ListOfList.td5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/TableGen/ListOfList.td b/test/TableGen/ListOfList.td
index adf9fe4..c646e3b 100644
--- a/test/TableGen/ListOfList.td
+++ b/test/TableGen/ListOfList.td
@@ -1,6 +1,4 @@
-// RUN llvm-tblgen %s | FileCheck %s
-
-// RUN: llvm-tblgen %s | grep "foo" | count 1
+// RUN: llvm-tblgen %s | FileCheck %s
class Base<string t> {
string text = t;
@@ -11,3 +9,4 @@ class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
def FOO : Derived<[["foo"]]>;
// CHECK: text = "foo"
+// CHECK-NOT: text = "foo"