Skip to content

Commit 23aa1f6

Browse files
committed
Allow overriding the tests output path.
1 parent c204398 commit 23aa1f6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lit.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ config.excludes = ['README.md', 'CONTRIBUTING.md', 'Inputs']
6464
config.test_source_root = os.path.join(srcroot)
6565

6666
# test_source_root: The root path where tests are executing.
67-
config.test_exec_root = "/tmp/swift-package-tests"
67+
config.test_exec_root = lit_config.params.get(
68+
"test-exec-root",
69+
"/tmp/swift-integration-tests")
6870

6971
# The triple is used during XFAIL processing. If the triple
7072
# specified here matches one of the XFAIL triples, a failing

0 commit comments

Comments
 (0)