File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -912,13 +912,6 @@ struct PipeConfigurationTests {
912
912
#if os(Windows)
913
913
let config =
914
914
pipe (
915
- swiftFunction: { input, output, err in
916
- _ = try await output. write ( " Swift function output \n " )
917
- _ = try await err. write ( " Swift function error \n " )
918
- return 0
919
- }
920
- )
921
- | process(
922
915
executable: . name( " powershell.exe " ) ,
923
916
arguments: Arguments ( [ " -Command " , " 'shell stdout'; [Console]::Error.WriteLine('shell stderr') " ] ) ,
924
917
options: . mergeErrors
@@ -929,13 +922,6 @@ struct PipeConfigurationTests {
929
922
#else
930
923
let config =
931
924
pipe (
932
- swiftFunction: { input, output, err in
933
- _ = try await output. write ( " Swift function output \n " )
934
- _ = try await err. write ( " Swift function error \n " )
935
- return 0
936
- }
937
- )
938
- | process(
939
925
executable: . name( " sh " ) ,
940
926
arguments: [ " -c " , " echo 'shell stdout'; echo 'shell stderr' >&2 " ] ,
941
927
options: . mergeErrors
You can’t perform that action at this time.
0 commit comments