diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-10-10 13:09:59 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-10-10 13:09:59 +0000 |
commit | 5d53ff54c0a3eea2cb9585f1f41401d1cc3c81c9 (patch) | |
tree | 78133387e9492b57baff39e56cc45af195f09227 /test/TableGen | |
parent | 8129d213960bac2c9d01053922866fc0f552462e (diff) |
XFAIL tblgen tests on leak checkers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen')
-rw-r--r-- | test/TableGen/ListOfList.td | 1 | ||||
-rw-r--r-- | test/TableGen/LoLoL.td | 1 | ||||
-rw-r--r-- | test/TableGen/MultiPat.td | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/test/TableGen/ListOfList.td b/test/TableGen/ListOfList.td index 17cc43b40a..565a99cf5f 100644 --- a/test/TableGen/ListOfList.td +++ b/test/TableGen/ListOfList.td @@ -1,6 +1,7 @@ // RUN llvm-tblgen %s | FileCheck %s // RUN: llvm-tblgen %s | grep {foo} | count 1 +// XFAIL: vg_leak class Base<string t> { string text = t; diff --git a/test/TableGen/LoLoL.td b/test/TableGen/LoLoL.td index f758e1b604..778c9609d1 100644 --- a/test/TableGen/LoLoL.td +++ b/test/TableGen/LoLoL.td @@ -1,4 +1,5 @@ // RUN: llvm-tblgen %s | FileCheck %s +// XFAIL: vg_leak class Base<list<int> v> { list<int> values = v; diff --git a/test/TableGen/MultiPat.td b/test/TableGen/MultiPat.td index b49b06c24c..b3792777b6 100644 --- a/test/TableGen/MultiPat.td +++ b/test/TableGen/MultiPat.td @@ -1,4 +1,5 @@ // RUN: llvm-tblgen %s | FileCheck %s +// XFAIL: vg_leak class ValueType<int size, int value> { int Size = size; |