diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2010-03-20 23:08:45 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2010-03-20 23:08:45 +0000 |
commit | 32989deb9641cf3878686b5634311a7a125f8f02 (patch) | |
tree | f960a33dda54f5db353abc6b301be29a7cbe4dcb /test/TableGen/MultiClass.td | |
parent | f2de13f8d7bed958538bbd9dbeb9b15ea48456cc (diff) |
Add support for XFAILing valgrind runs with memory leak checking independently
of runs without leak checking. We add -vg to the triple for non-checked runs,
or -vg_leak for checked runs. Also use this to XFAIL the TableGen tests, since
tablegen leaks like a sieve. This includes some valgrindArgs refactoring.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/MultiClass.td')
-rw-r--r-- | test/TableGen/MultiClass.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/TableGen/MultiClass.td b/test/TableGen/MultiClass.td index 52ba59c230..9f92b73dba 100644 --- a/test/TableGen/MultiClass.td +++ b/test/TableGen/MultiClass.td @@ -1,4 +1,5 @@ // RUN: tblgen %s | grep {zing = 4} | count 2 +// XFAIL: vg_leak class C1<int A, string B> { int bar = A; |