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 5c7856d + 35b964c commit dbf9b8cCopy full SHA for dbf9b8c
Tests/Functional/lit.cfg
@@ -14,7 +14,6 @@ import tempfile
14
import shlex
15
import sys
16
import lit
17
-import pipes
18
import re
19
20
# Set up lit config.
@@ -141,7 +140,7 @@ xctest_checker = os.path.join(
141
140
config.substitutions.append(('%{xctest_checker}', '%%{python} %s' % xctest_checker))
142
143
# Add Python to run xctest_checker.py tests as part of XCTest tests
144
-config.substitutions.append( ('%{python}', pipes.quote(sys.executable)) )
+config.substitutions.append( ('%{python}', shlex.quote(sys.executable)) )
145
146
# Conditionally report the Swift 5.5 Concurrency runtime as available depending on the OS and version.
147
# Darwin is the only platform where this is a limitation.
0 commit comments