Revert "[lit] Passthrough CLANG_MODULE_CACHE_PATH env var"

This reverts commit 6466c9abf3.
This commit is contained in:
Alex Brachet 2022-06-12 03:01:08 +00:00
parent 45963ae06d
commit 98052b6463
1 changed files with 0 additions and 8 deletions

View File

@ -77,14 +77,6 @@ class TestingConfig(object):
if val:
environment[var] = val
pass_vars_emptyable = [
'CLANG_MODULE_CACHE_PATH',
]
for var in pass_vars_emptyable:
if var in os.environ:
environment[var] = os.environ[var]
# Set the default available features based on the LitConfig.
available_features = []
if litConfig.useValgrind: