From 9f64a56ababffecbe5a818ecbe5b6fbfc1d7b974 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 17 Oct 2013 12:10:12 +0000 Subject: [PATCH] Lit: Introduce an environment variable, $LIT_PRESERVES_TMP, to preserve TMP (and TEMP). This is intended to check how many temporary files would be generated in automated builders. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192887 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit/TestingConfig.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/utils/lit/lit/TestingConfig.py b/utils/lit/lit/TestingConfig.py index d5415396906..748cf1f6b80 100644 --- a/utils/lit/lit/TestingConfig.py +++ b/utils/lit/lit/TestingConfig.py @@ -35,6 +35,15 @@ class TestingConfig: 'TMP' : os.environ.get('TMP',''), }) + # The option to preserve TMP (and TEMP). + # This is intended to check how many temporary files would be generated + # in automated builders. + if os.environ.has_key('LIT_PRESERVES_TMP'): + environment.update({ + 'TEMP' : os.environ.get('TEMP',''), + 'TMP' : os.environ.get('TMP',''), + }) + # Set the default available features based on the LitConfig. available_features = [] if litConfig.useValgrind: -- 2.34.1