projects
/
clang
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a8ccbf
)
Remove local handling of ASAN_OPTIONS and UBSAN_OPTIONS.
author
Rafael Espindola
<rafael.espindola@gmail.com>
Mon, 3 Nov 2014 23:09:25 +0000
(23:09 +0000)
committer
Rafael Espindola
<rafael.espindola@gmail.com>
Mon, 3 Nov 2014 23:09:25 +0000
(23:09 +0000)
They are now forwarded by TestingConfig.py.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@221200
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/lit.cfg
patch
|
blob
|
history
diff --git
a/test/lit.cfg
b/test/lit.cfg
index 8a18e987c7572d2ef570979a0ecfa0488733e12b..4567f179f8167f0229e5a38ba49bf6f8a7b6a280 100644
(file)
--- 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.