1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

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.

llvm-svn: 99088
This commit is contained in:
Daniel Dunbar 2010-03-20 21:12:48 +00:00
parent abb84bec5c
commit 6779ebea66

View File

@ -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):