Skip to content

Commit fbca3e6

Browse files
authored
Disable testAsyncStream* in AsyncProcessTests.swift (#7923)
This API is not used anywhere in the SwiftPM codebase, but tests covering it are flaky. rdar://133548796
1 parent b755e1d commit fbca3e6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Tests/BasicsTests/AsyncProcessTests.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,9 @@ final class AsyncProcessTests: XCTestCase {
396396
}
397397

398398
func testAsyncStream() async throws {
399+
// rdar://133548796
400+
try XCTSkipIfCI()
401+
399402
let (stdoutStream, stdoutContinuation) = AsyncProcess.ReadableStream.makeStream()
400403
let (stderrStream, stderrContinuation) = AsyncProcess.ReadableStream.makeStream()
401404

@@ -450,6 +453,9 @@ final class AsyncProcessTests: XCTestCase {
450453
}
451454

452455
func testAsyncStreamHighLevelAPI() async throws {
456+
// rdar://133548796
457+
try XCTSkipIfCI()
458+
453459
let result = try await AsyncProcess.popen(
454460
scriptName: "echo",
455461
stdout: { stdin, stdout in

0 commit comments

Comments
 (0)