File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1338,12 +1338,13 @@ rth_flags = ''
1338
1338
if swift_execution_tests_extra_flags :
1339
1339
rth_flags = swift_execution_tests_extra_flags + ' -wmo'
1340
1340
1341
+ # FIXME: why can we not use %rth and have that be expanded out?
1341
1342
config .target_resilience_test = (
1342
- '%s --target-build-swift "%s" --target-run "%s" --t %%t --S %%S --s %%s '
1343
- '--lib-prefix "%s" --lib-suffix "%s" --target-codesign "%s" '
1343
+ '%r % s --target-build-swift "%s" --target-run "%s" --t %%t --S %%S '
1344
+ '--s %%s -- lib-prefix "%s" --lib-suffix "%s" --target-codesign "%s" '
1344
1345
'--additional-compile-flags "%s" --triple "%s"'
1345
- % (config . rth , config .target_build_swift , config .target_run ,
1346
- config .target_shared_library_prefix ,
1346
+ % (sys . executable , config .rth , config .target_build_swift ,
1347
+ config .target_run , config . target_shared_library_prefix ,
1347
1348
config .target_shared_library_suffix , config .target_codesign ,
1348
1349
rth_flags , config .variant_triple ))
1349
1350
You can’t perform that action at this time.
0 commit comments