From 5ecb37785429cbc745dae2c5ad1f46470d0b742a Mon Sep 17 00:00:00 2001 From: Artem Chikin Date: Thu, 15 Apr 2021 12:11:19 -0700 Subject: [PATCH] Disable `testInputForwarding` on Apple Silicon while figuring out why it is failing to unblock CI. --- Tests/SwiftDriverTests/JobExecutorTests.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tests/SwiftDriverTests/JobExecutorTests.swift b/Tests/SwiftDriverTests/JobExecutorTests.swift index d936dddb9..5fedcd6ae 100644 --- a/Tests/SwiftDriverTests/JobExecutorTests.swift +++ b/Tests/SwiftDriverTests/JobExecutorTests.swift @@ -221,6 +221,11 @@ final class JobExecutorTests: XCTestCase { /// Ensure the executor is capable of forwarding its standard input to the compile job that requires it. func testInputForwarding() throws { #if os(macOS) + #if arch(arm64) + // Disabled on Apple Silicon + // rdar://76609781 + throw XCTSkip() + #endif let executor = try SwiftDriverExecutor(diagnosticsEngine: DiagnosticsEngine(), processSet: ProcessSet(), fileSystem: localFileSystem,