File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,8 @@ export class TestingDebugConfigurationFactory {
128128 if ( isDebugging ( this . testKind ) && this . testLibrary === TestLibrary . xctest ) {
129129 return {
130130 ...this . baseConfig ,
131- program : this . xcTestOutputPath ,
132- args : this . testList ,
131+ program : this . testExecutableOutputPath ,
132+ args : this . debuggingTestExecutableArgs ,
133133 env : {
134134 ...swiftRuntimeEnv ( ) ,
135135 ...configuration . folder ( this . ctx . workspaceFolder ) . testEnvironmentVariables ,
@@ -419,7 +419,7 @@ export class TestingDebugConfigurationFactory {
419419 this . addTestsToArgs ( this . addSwiftTestingFlagsArgs ( [ ] ) )
420420 ) ;
421421 case TestLibrary . xctest :
422- return this . testList ;
422+ return [ this . testList . join ( "," ) ] ;
423423 }
424424 }
425425
You can’t perform that action at this time.
0 commit comments