[llvm-commits] [llvm] r97171 - /llvm/trunk/test/lit.cfg
Daniel Dunbar
daniel at zuster.org
Thu Feb 25 14:09:09 PST 2010
Author: ddunbar
Date: Thu Feb 25 16:09:09 2010
New Revision: 97171
URL: http://llvm.org/viewvc/llvm-project?rev=97171&view=rev
Log:
tests: Propogate the HOME environment variable through to tests. I'm ambivalent
about this, but it can be useful for users who use ccache, since the LLVMC tests
are fond of calling gcc.
Modified:
llvm/trunk/test/lit.cfg
Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=97171&r1=97170&r2=97171&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Thu Feb 25 16:09:09 2010
@@ -45,6 +45,9 @@
config.environment['PATH']))
config.environment['PATH'] = path
+# Propogate 'HOME' through the environment.
+config.environment['HOME'] = os.environ['HOME']
+
###
import os
More information about the llvm-commits
mailing list