File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -952,6 +952,7 @@ struct PipeConfigurationTests {
952
952
#expect( result. standardOutput? . contains ( " stderr " ) == true )
953
953
#expect( result. terminationStatus. isSuccess)
954
954
}
955
+ #endif
955
956
956
957
@Test func testErrorRedirectionWithPipeOperators( ) async throws {
957
958
#if os(Windows)
@@ -988,7 +989,6 @@ struct PipeConfigurationTests {
988
989
#expect( lineCount == " 1 " )
989
990
#expect( result. terminationStatus. isSuccess)
990
991
}
991
- #endif
992
992
993
993
@Test func testProcessHelperWithErrorRedirection( ) async throws {
994
994
let pipeline =
@@ -1022,7 +1022,8 @@ struct PipeConfigurationTests {
1022
1022
1023
1023
@Test func testPipeConfigurationDescription( ) {
1024
1024
let config = pipe (
1025
- Echo ( " test " )
1025
+ executable: . name( " echo " ) ,
1026
+ arguments: [ " echo " ]
1026
1027
) . finally (
1027
1028
output: . string( limit: . max)
1028
1029
)
You can’t perform that action at this time.
0 commit comments