File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,6 @@ struct PipeConfigurationTests {
238
238
let config = pipe (
239
239
Echo ( " Hello World " )
240
240
) . finally (
241
- input: NoInput ( ) ,
242
241
output: . string( limit: . max) ,
243
242
error: . discarded
244
243
)
@@ -547,6 +546,7 @@ struct PipeConfigurationTests {
547
546
#expect( result. terminationStatus. isSuccess)
548
547
}
549
548
549
+ #if !os(Windows)
550
550
@Test func testProcessStageWithFileDescriptorInput( ) async throws {
551
551
// Create a temporary file with test content
552
552
let tempURL = FileManager . default. temporaryDirectory. appendingPathComponent ( " pipe_test_ \( UUID ( ) . uuidString) .txt " )
@@ -579,6 +579,7 @@ struct PipeConfigurationTests {
579
579
#expect( lineCount == " 3 " ) // head -3 should give us 3 lines
580
580
#expect( result. terminationStatus. isSuccess)
581
581
}
582
+ #endif
582
583
583
584
// FIXME regular files opened with FileDescriptor.open() aren't opened with overlapped I/O on Windows, so the I/O completion port can't add them.
584
585
#if !os(Windows)
You can’t perform that action at this time.
0 commit comments