aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-03-20 21:12:48 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-03-20 21:12:48 +0000
commit9e6366edb48f368acd0f73c1ba987069fb6dc0f6 (patch)
treed0084052ffb5ac14282c68a7e867f2f7098a181c
parent85c4cc2a1422d46cdf549871c79dd2eb789708da (diff)
downloadexternal_llvm-9e6366edb48f368acd0f73c1ba987069fb6dc0f6.zip
external_llvm-9e6366edb48f368acd0f73c1ba987069fb6dc0f6.tar.gz
external_llvm-9e6366edb48f368acd0f73c1ba987069fb6dc0f6.tar.bz2
tests: Mangle '-vg' onto the end of the triple when running under valgrind, so
we can use the standard XFAIL and XTARGET to conditional tests based on valgrind. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99088 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/lit.cfg5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 929871a..e65b8be 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -128,6 +128,11 @@ excludes = []
# Provide target_triple for use in XFAIL and XTARGET.
config.target_triple = site_exp['target_triplet']
+# When running under valgrind, we mangle '-vg' onto the end of the triple so we
+# can check it with XFAIL and XTARGET.
+if lit.useValgrind:
+ config.target_triple += '-vg'
+
# Provide llvm_supports_target for use in local configs.
targets = set(site_exp["TARGETS_TO_BUILD"].split())
def llvm_supports_target(name):