We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
testAsyncStream*
AsyncProcessTests.swift
1 parent b755e1d commit fbca3e6Copy full SHA for fbca3e6
Tests/BasicsTests/AsyncProcessTests.swift
@@ -396,6 +396,9 @@ final class AsyncProcessTests: XCTestCase {
396
}
397
398
func testAsyncStream() async throws {
399
+ // rdar://133548796
400
+ try XCTSkipIfCI()
401
+
402
let (stdoutStream, stdoutContinuation) = AsyncProcess.ReadableStream.makeStream()
403
let (stderrStream, stderrContinuation) = AsyncProcess.ReadableStream.makeStream()
404
@@ -450,6 +453,9 @@ final class AsyncProcessTests: XCTestCase {
450
453
451
454
452
455
func testAsyncStreamHighLevelAPI() async throws {
456
457
458
459
let result = try await AsyncProcess.popen(
460
scriptName: "echo",
461
stdout: { stdin, stdout in
0 commit comments