Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Tests/Functional/lit.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import platform
import tempfile
import sys
import lit
import pipes

# Set up lit config.
config.name = 'SwiftXCTestFunctionalTests'
Expand Down Expand Up @@ -137,4 +138,4 @@ xctest_checker = os.path.join(
config.substitutions.append(('%{xctest_checker}', '%%{python} %s' % xctest_checker))

# Add Python to run xctest_checker.py tests as part of XCTest tests
config.substitutions.append( ('%{python}', sys.executable) )
config.substitutions.append( ('%{python}', pipes.quote(sys.executable)) )