Skip to content

Commit 7fbfa59

Browse files
authored
Merge pull request #72922 from meg-gupta/moredisable
Disable and fix some failing tests in CI
2 parents 38b78ed + 2b337a3 commit 7fbfa59

11 files changed

+18
-4
lines changed

test/Concurrency/Runtime/async_task_executor_structured_concurrency.swift

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
// REQUIRES: concurrency_runtime
88
// UNSUPPORTED: back_deployment_runtime
9+
// rdar://126118749
10+
// UNSUPPORTED: CPU=arm64e
911

1012
import Dispatch
1113
import StdlibUnittest

test/Concurrency/isolation_macro_availability.swift

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// REQUIRES: swift_swift_parser
55
// REQUIRES: VENDOR=apple
66

7+
// rdar://126118470
8+
// UNSUPPORTED: CPU=arm64e
9+
710
@available(SwiftStdlib 5.1, *)
811
func isolatedFunc(isolation: isolated (any Actor)? = #isolation) {}
912

test/DebugInfo/BuiltinStdlibTypes.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %target-swift-frontend %s -Onone -emit-ir -gdwarf-types -o - | %FileCheck %s
22

33
// rdar://124465351
4-
// UNSUPPORTED: CPU=armv7k
4+
// UNSUPPORTED: OS=watchos
55

66
// File is empty as this test check for the builtin stdlib types that should
77
// always be emitted.

test/DebugInfo/classes.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %target-swift-frontend -primary-file %s -emit-ir -gdwarf-types -o - | %FileCheck %s
22

33
// rdar://124465351
4-
// UNSUPPORTED: CPU=armv7k
4+
// UNSUPPORTED: OS=watchos
55

66
class SomeClass {
77
let first = 4

test/Distributed/Runtime/distributed_actor_localSystem_distributedProtocol.swift

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
// rdar://90373022
1515
// UNSUPPORTED: OS=watchos
1616

17+
// rdar://125628060
18+
// UNSUPPORTED: CPU=arm64e
19+
1720
import Distributed
1821

1922
@_DistributedProtocol

test/Distributed/Runtime/distributed_actor_localSystem_manual_conformance.swift

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
// rdar://90373022
1515
// UNSUPPORTED: OS=watchos
1616

17+
// rdar://125628060
18+
// UNSUPPORTED: CPU=arm64e
19+
1720
import Distributed
1821

1922
@available(SwiftStdlib 6.0, *)

test/Interop/SwiftToCxx/enums/enum-associated-value-class-type-cxx.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: %check-interop-cxx-header-in-clang(%t/enums.h -Wno-unused-private-field -Wno-unused-function)
66

77
// rdar://124466216
8-
// UNSUPPORTED: CPU=armv7k
8+
// UNSUPPORTED: OS=watchos
99

1010
public class C {
1111
public var x: Int

test/Sanitizers/asan/recover.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// REQUIRES: executable_test
22
// REQUIRES: asan_runtime
33
// UNSUPPORTED: OS=windows-msvc
4+
// REQUIRES: rdar126150190
45

56
// Check with recovery instrumentation and the runtime option to continue execution.
67
// RUN: %target-swiftc_driver %s -g -sanitize=address -sanitize-recover=address -import-objc-header %S/asan_interface.h -emit-ir -o %t.asan_recover.ll

test/abi/macOS/x86_64/stdlib.swift

+1
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,7 @@ Added: __swift_exceptionPersonality
562562
Added: _swift_willThrowTypedImpl
563563
Added: __swift_willThrowTypedImpl
564564
Added: __swift_enableSwizzlingOfAllocationAndRefCountingFunctions_forInstrumentsOnly
565+
Added: _swift_clearSensitive
565566

566567
// Runtime bincompat functions for Concurrency runtime to detect legacy mode
567568
Added: _swift_bincompat_useLegacyNonCrashingExecutorChecks

validation-test/Runtime/issue-51181.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// RUN: %target-run-simple-swift
22
// REQUIRES: executable_test
3+
// REQUIRES: rdar126151157
34

45
// https://github.com/apple/swift/issues/51181
56

validation-test/stdlib/StringGraphemeBreaking.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// REQUIRES: optimized_stdlib
77

88
// rdar://124539686
9-
// UNSUPPORTED: CPU=arm64e
9+
// UNSUPPORTED: CPU=arm64e, CPU=arm64
1010

1111
import StdlibUnittest
1212
import StdlibUnicodeUnittest

0 commit comments

Comments
 (0)