We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d728b64 + e3bef0b commit 02aa0cfCopy full SHA for 02aa0cf
Tests/Functional/lit.cfg
@@ -13,6 +13,7 @@ import platform
13
import tempfile
14
import sys
15
import lit
16
+import pipes
17
18
# Set up lit config.
19
config.name = 'SwiftXCTestFunctionalTests'
@@ -137,4 +138,4 @@ xctest_checker = os.path.join(
137
138
config.substitutions.append(('%{xctest_checker}', '%%{python} %s' % xctest_checker))
139
140
# Add Python to run xctest_checker.py tests as part of XCTest tests
-config.substitutions.append( ('%{python}', sys.executable) )
141
+config.substitutions.append( ('%{python}', pipes.quote(sys.executable)) )
0 commit comments