r221200 - Remove local handling of ASAN_OPTIONS and UBSAN_OPTIONS.
Rafael Espindola
rafael.espindola at gmail.com
Mon Nov 3 15:09:26 PST 2014
Author: rafael
Date: Mon Nov 3 17:09:25 2014
New Revision: 221200
URL: http://llvm.org/viewvc/llvm-project?rev=221200&view=rev
Log:
Remove local handling of ASAN_OPTIONS and UBSAN_OPTIONS.
They are now forwarded by TestingConfig.py.
Modified:
cfe/trunk/test/lit.cfg
Modified: cfe/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=221200&r1=221199&r2=221200&view=diff
==============================================================================
--- cfe/trunk/test/lit.cfg (original)
+++ cfe/trunk/test/lit.cfg Mon Nov 3 17:09:25 2014
@@ -114,11 +114,6 @@ for symbolizer in ['ASAN_SYMBOLIZER_PATH
if symbolizer in os.environ:
config.environment[symbolizer] = os.environ[symbolizer]
-# Propagate options for sanitizers.
-for options in ['ASAN_OPTIONS', 'UBSAN_OPTIONS']:
- if options in os.environ:
- config.environment[options] = os.environ[options]
-
###
# Check that the object root is known.
More information about the cfe-commits
mailing list