summaryrefslogtreecommitdiff
path: root/test/TableGen
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-10-10 13:09:59 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-10-10 13:09:59 +0000
commit5d53ff54c0a3eea2cb9585f1f41401d1cc3c81c9 (patch)
tree78133387e9492b57baff39e56cc45af195f09227 /test/TableGen
parent8129d213960bac2c9d01053922866fc0f552462e (diff)
downloadllvm-5d53ff54c0a3eea2cb9585f1f41401d1cc3c81c9.tar.gz
llvm-5d53ff54c0a3eea2cb9585f1f41401d1cc3c81c9.tar.bz2
llvm-5d53ff54c0a3eea2cb9585f1f41401d1cc3c81c9.tar.xz
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.td1
-rw-r--r--test/TableGen/LoLoL.td1
-rw-r--r--test/TableGen/MultiPat.td1
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;