summaryrefslogtreecommitdiff
path: root/test/TableGen
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-05-09 08:18:33 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-05-09 08:18:33 +0000
commitad4480cf8b9079ab2aced0c2515bacabe51e9c70 (patch)
tree2d11ff3bc4a3bf6c6dac7ac1ea0bb2c412c75701 /test/TableGen
parent6454f241873566064a976efbe7bfdd0d5d127d61 (diff)
test/TableGen: Remove XFAIL:vg_leak out of 3 tests corresponding to r208293.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208393 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen')
-rw-r--r--test/TableGen/GeneralList.td1
-rw-r--r--test/TableGen/lisp.td1
-rw-r--r--test/TableGen/listconcat.td1
3 files changed, 0 insertions, 3 deletions
diff --git a/test/TableGen/GeneralList.td b/test/TableGen/GeneralList.td
index 9e0c7df552b..17cc9a5cb03 100644
--- a/test/TableGen/GeneralList.td
+++ b/test/TableGen/GeneralList.td
@@ -1,5 +1,4 @@
// RUN: llvm-tblgen %s
-// XFAIL: vg_leak
//
// Test to make sure that lists work with any data-type
diff --git a/test/TableGen/lisp.td b/test/TableGen/lisp.td
index 9e586055ff9..d753fbd299c 100644
--- a/test/TableGen/lisp.td
+++ b/test/TableGen/lisp.td
@@ -1,5 +1,4 @@
// RUN: llvm-tblgen %s
-// XFAIL: vg_leak
// CHECK: def One {
// CHECK-NEXT: list<string> names = ["Jeffrey Sinclair"];
diff --git a/test/TableGen/listconcat.td b/test/TableGen/listconcat.td
index d055ae65575..870e649d41d 100644
--- a/test/TableGen/listconcat.td
+++ b/test/TableGen/listconcat.td
@@ -1,5 +1,4 @@
// RUN: llvm-tblgen %s | FileCheck %s
-// XFAIL: vg_leak
// CHECK: class Y<list<string> Y:S = ?> {
// CHECK: list<string> T1 = !listconcat(Y:S, ["foo"]);