File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -754,6 +754,12 @@ final class ExplicitModuleBuildTests: XCTestCase {
754
754
// We only care about prebuilt modules in macOS.
755
755
#if os(macOS)
756
756
func testPrebuiltModuleGenerationJobs( ) throws {
757
+ #if arch(arm64)
758
+ // Disabled on Apple Silicon
759
+ // rdar://76609781
760
+ throw XCTSkip ( )
761
+ #endif
762
+
757
763
func getInputModules( _ job: Job ) -> [ String ] {
758
764
return job. inputs. map { input in
759
765
return input. file. absolutePath!. parentDirectory. basenameWithoutExt
Original file line number Diff line number Diff line change @@ -131,6 +131,11 @@ final class IntegrationTests: IntegrationTestCase {
131
131
}
132
132
133
133
func testLitDriverValidationTests( ) throws {
134
+ #if os(macOS) && arch(arm64)
135
+ // Disabled on Apple Silicon
136
+ // rdar://76609781
137
+ throw XCTSkip ( )
138
+ #endif
134
139
guard ProcessEnv . vars. keys. contains ( " SWIFT_DRIVER_ENABLE_FAILING_INTEGRATION_TESTS " ) else {
135
140
throw XCTSkip ( " Not all Driver validation-tests supported " )
136
141
}
Original file line number Diff line number Diff line change @@ -90,7 +90,13 @@ extension DarwinToolchain {
90
90
91
91
final class JobExecutorTests : XCTestCase {
92
92
func testDarwinBasic( ) throws {
93
- #if os(macOS)
93
+ #if os(macOS)
94
+ #if arch(arm64)
95
+ // Disabled on Apple Silicon
96
+ // rdar://76609781
97
+ throw XCTSkip ( )
98
+ #endif
99
+
94
100
let executor = try SwiftDriverExecutor ( diagnosticsEngine: DiagnosticsEngine ( ) ,
95
101
processSet: ProcessSet ( ) ,
96
102
fileSystem: localFileSystem,
@@ -362,6 +368,12 @@ final class JobExecutorTests: XCTestCase {
362
368
}
363
369
364
370
func testSaveTemps( ) throws {
371
+ #if os(macOS) && arch(arm64)
372
+ // Disabled on Apple Silicon
373
+ // rdar://76609781
374
+ throw XCTSkip ( )
375
+ #endif
376
+
365
377
do {
366
378
try withTemporaryDirectory { path in
367
379
let main = path. appending ( component: " main.swift " )
You can’t perform that action at this time.
0 commit comments