Define the x86 pause instruction.
[oota-llvm.git] / test / lit.cfg
index ad73e98bfe78ade27589fcd965df70afba9c1222..fd3120a29fe984bb954e7f381dab5aee3747a569 100644 (file)
@@ -45,6 +45,9 @@ if llvm_obj_root is not None:
                                      config.environment['PATH']))
         config.environment['PATH'] = path
 
+# Propogate 'HOME' through the environment.
+config.environment['HOME'] = os.environ['HOME']
+
 ###
 
 import os
@@ -125,6 +128,10 @@ excludes = []
 # Provide target_triple for use in XFAIL and XTARGET.
 config.target_triple = site_exp['target_triplet']
 
+# When running under valgrind, we mangle '-vg' or '-vg_leak' onto the end of the
+# triple so we can check it with XFAIL and XTARGET.
+config.target_triple += lit.valgrindTriple
+
 # Provide llvm_supports_target for use in local configs.
 targets = set(site_exp["TARGETS_TO_BUILD"].split())
 def llvm_supports_target(name):