diff options
author | David Greene <greened@obbligato.org> | 2009-06-08 22:34:57 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-06-08 22:34:57 +0000 |
commit | 5f323419f309c368a6eb63370f0cff35fb10f205 (patch) | |
tree | 35ec52e356b51ff85c02e498a9bc89bae1b22a54 /test/TableGen | |
parent | d7251892547b71c27ab6fb87355ca9b984d92908 (diff) |
Add a more robust !if test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen')
-rw-r--r-- | test/TableGen/if.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TableGen/if.td b/test/TableGen/if.td index 3c45d95eb2..9b2438245d 100644 --- a/test/TableGen/if.td +++ b/test/TableGen/if.td @@ -1,5 +1,5 @@ -// RUN: tblgen %s | grep {1, 2, 3} | count 4 -// RUN: tblgen %s | grep {4, 5, 6} | count 2 +// RUN: tblgen %s | grep {\\\[1, 2, 3\\\]} | count 4 +// RUN: tblgen %s | grep {\\\[4, 5, 6\\\]} | count 2 class A<list<list<int>> vals> { list<int> first = vals[0]; |