diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-03-27 13:11:12 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-03-27 13:11:12 +0000 |
commit | f647052d5f4504edffb8ffa8fe71cb9451997641 (patch) | |
tree | 35a2b53f25a8aa05c18dfc5096719aabbb7521b0 /test/Unit | |
parent | 26998ee794e9b6f9b0bc27d1e273b6b78afce57d (diff) | |
download | external_llvm-f647052d5f4504edffb8ffa8fe71cb9451997641.zip external_llvm-f647052d5f4504edffb8ffa8fe71cb9451997641.tar.gz external_llvm-f647052d5f4504edffb8ffa8fe71cb9451997641.tar.bz2 |
Disable ASan/MSan symbolization of reports in tests.
It was using an instrumented symbolizer binary, which is a potential fork bomb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Unit')
-rw-r--r-- | test/Unit/lit.cfg | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/Unit/lit.cfg b/test/Unit/lit.cfg index 8dc7853..ba4cbc5 100644 --- a/test/Unit/lit.cfg +++ b/test/Unit/lit.cfg @@ -81,10 +81,3 @@ if config.enable_shared: shlibpath = os.pathsep + shlibpath shlibpath = config.shlibdir + shlibpath config.environment[config.shlibpath_var] = shlibpath - -# Setup paths to llvm-symbolizer for Sanitizer tools. -llvm_tools_dir = getattr(config, 'llvm_tools_dir', None) -if llvm_tools_dir: - llvm_symbolizer_path = os.path.join(llvm_tools_dir, 'llvm-symbolizer') - config.environment['ASAN_SYMBOLIZER_PATH'] = llvm_symbolizer_path - config.environment['MSAN_SYMBOLIZER_PATH'] = llvm_symbolizer_path |