aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-01-09 01:56:39 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-01-09 01:56:39 +0000
commit1d70b3af1c1b8f321eba07127518a71878bce7a9 (patch)
treeb4e3b95962d0a665c722a7db5c78d7e27e8fe322
parent72714e0f8a3c209461d46551ebcf111e3f35ba32 (diff)
parent5a622b72ff719e56da5e4384343c08305152e83e (diff)
downloadexternal_llvm-1d70b3af1c1b8f321eba07127518a71878bce7a9.zip
external_llvm-1d70b3af1c1b8f321eba07127518a71878bce7a9.tar.gz
external_llvm-1d70b3af1c1b8f321eba07127518a71878bce7a9.tar.bz2
am 5a622b72: Merge "Pass LSAN_OPTIONS down so that it is possible to add suppressions."
* commit '5a622b72ff719e56da5e4384343c08305152e83e': Pass LSAN_OPTIONS down so that it is possible to add suppressions.
-rw-r--r--utils/lit/lit/TestingConfig.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/lit/lit/TestingConfig.py b/utils/lit/lit/TestingConfig.py
index 4cd9486..52cebbf 100644
--- a/utils/lit/lit/TestingConfig.py
+++ b/utils/lit/lit/TestingConfig.py
@@ -23,7 +23,8 @@ class TestingConfig:
}
pass_vars = ['LIBRARY_PATH', 'LD_LIBRARY_PATH', 'SYSTEMROOT', 'TERM',
- 'LD_PRELOAD', 'ASAN_OPTIONS', 'UBSAN_OPTIONS']
+ 'LD_PRELOAD', 'ASAN_OPTIONS', 'UBSAN_OPTIONS',
+ 'LSAN_OPTIONS']
for var in pass_vars:
environment[var] = os.environ.get(var, '')