aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/ListOfList.td
diff options
context:
space:
mode:
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"