From d33c36235df1925b894acd1352ba0d541e97afac Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Thu, 19 May 2022 19:22:02 -0700 Subject: [lit] Fix setup of sanitizer environment Not all options were propageted into tests. Reviewed By: ychen Differential Revision: https://reviews.llvm.org/D122869 --- cross-project-tests/lit.cfg.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'cross-project-tests') 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') -- cgit v1.2.1