File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,12 @@ def main(args=sys.argv[1:]):
159
159
"temporary directory is used" ,
160
160
metavar = "PATH" ,
161
161
default = tempfile .mkdtemp ())
162
+ build_parser .add_argument (
163
+ "--foundation-build-dir" ,
164
+ help = "Path to swift-corelibs-foundation build products, which "
165
+ "the built XCTest.so will be linked against." ,
166
+ metavar = "PATH" ,
167
+ required = False )
162
168
build_parser .add_argument ("--swift-build-dir" ,
163
169
help = "deprecated, do not use" )
164
170
build_parser .add_argument ("--arch" , help = "deprecated, do not use" )
@@ -208,6 +214,12 @@ def main(args=sys.argv[1:]):
208
214
"--swiftc" ,
209
215
help = "Path to the 'swiftc' compiler used to build and run the tests." ,
210
216
required = True )
217
+ test_parser .add_argument (
218
+ "--foundation-build-dir" ,
219
+ help = "Path to swift-corelibs-foundation build products, which the "
220
+ "tests will be linked against." ,
221
+ metavar = "PATH" ,
222
+ required = False )
211
223
212
224
install_parser = subparsers .add_parser (
213
225
"install" ,
You can’t perform that action at this time.
0 commit comments