Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2022-05-20 05:22:02 +0300
committerVitaly Buka <vitalybuka@google.com>2022-05-20 05:24:16 +0300
commitd33c36235df1925b894acd1352ba0d541e97afac (patch)
tree1733298f66108e5808399c72eee74008fec82586 /cross-project-tests
parent0e02bf635821be8deb2e8094706198838e45e968 (diff)
[lit] Fix setup of sanitizer environment
Not all options were propageted into tests. Reviewed By: ychen Differential Revision: https://reviews.llvm.org/D122869
Diffstat (limited to 'cross-project-tests')
-rw-r--r--cross-project-tests/lit.cfg.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/cross-project-tests/lit.cfg.py b/cross-project-tests/lit.cfg.py
index 0eeec7908fe4..7bda584dc317 100644
--- a/cross-project-tests/lit.cfg.py
+++ b/cross-project-tests/lit.cfg.py
@@ -83,11 +83,6 @@ llvm_config.use_lld(required=('lld' in config.llvm_enabled_projects))
if 'compiler-rt' in config.llvm_enabled_projects:
config.available_features.add('compiler-rt')
-if config.llvm_use_sanitizer:
- # Propagate path to symbolizer for ASan/MSan.
- llvm_config.with_system_environment(
- ['ASAN_SYMBOLIZER_PATH', 'MSAN_SYMBOLIZER_PATH'])
-
# Check which debuggers are available:
lldb_path = llvm_config.use_llvm_tool('lldb', search_env='LLDB')