aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-01-08 23:39:03 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-01-08 23:39:03 +0000
commit5a622b72ff719e56da5e4384343c08305152e83e (patch)
treeb4e3b95962d0a665c722a7db5c78d7e27e8fe322
parent51f06ecc5d0f71448146f98905b1796ae88d28da (diff)
parentfa235b7f14a68d678f8fe777ad741ad6b80915b4 (diff)
downloadexternal_llvm-5a622b72ff719e56da5e4384343c08305152e83e.zip
external_llvm-5a622b72ff719e56da5e4384343c08305152e83e.tar.gz
external_llvm-5a622b72ff719e56da5e4384343c08305152e83e.tar.bz2
Merge "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, '')