From: Rafael Espindola Date: Mon, 3 Nov 2014 23:09:25 +0000 (+0000) Subject: Remove local handling of ASAN_OPTIONS and UBSAN_OPTIONS. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e83346c8aa1bc363816c66873b939c21c7cc69a9;p=clang Remove local handling of ASAN_OPTIONS and UBSAN_OPTIONS. They are now forwarded by TestingConfig.py. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@221200 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lit.cfg b/test/lit.cfg index 8a18e987c7..4567f179f8 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -114,11 +114,6 @@ for symbolizer in ['ASAN_SYMBOLIZER_PATH', 'MSAN_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.