aboutsummaryrefslogtreecommitdiff
path: root/lit.cfg
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2016-04-19 17:49:14 +0000
committerMatthias Braun <matze@braunis.de>2016-04-19 17:49:14 +0000
commit854cd45cb3fe2aec363f3a36942f2a02f9ad6ffc (patch)
treec581060acbd8d69da1886de51a900185ea4ebd57 /lit.cfg
parent9ea46d6da96917fa24c9915c5f6e134372b62fcc (diff)
lit: Set test_exec_root and create the logfile there
Also remove the unused test_suite_root setting. git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@266781 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lit.cfg')
-rw-r--r--lit.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/lit.cfg b/lit.cfg
index 73625c6a..630f871a 100644
--- a/lit.cfg
+++ b/lit.cfg
@@ -26,7 +26,7 @@ else:
# Setup logging
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
-file_log = logging.FileHandler("%s/test.log" % config.test_source_root,
+file_log = logging.FileHandler("%s/test.log" % config.test_exec_root,
mode="w")
file_log.setLevel(logging.DEBUG)
logger.addHandler(file_log)