Skip to content

Commit 24aca40

Browse files
committed
[test] Skip concurrency tests during back deployment testing
rdar://76038845
1 parent 6f2dff9 commit 24aca40

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+137
-3
lines changed

test/Concurrency/Runtime/actor_counters.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// REQUIRES: concurrency
55
// REQUIRES: libdispatch
66

7+
// rdar://76038845
8+
// UNSUPPORTED: use_os_stdlib
9+
710
actor Counter {
811
private var value = 0
912
private let scratchBuffer: UnsafeMutableBufferPointer<Int>

test/Concurrency/Runtime/async_let_fibonacci.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// REQUIRES: concurrency
55
// REQUIRES: libdispatch
66

7+
// rdar://76038845
8+
// UNSUPPORTED: use_os_stdlib
9+
710
func fib(_ n: Int) -> Int {
811
var first = 0
912
var second = 1

test/Concurrency/Runtime/async_properties_actor.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// REQUIRES: concurrency
55
// REQUIRES: libdispatch
66

7+
// rdar://76038845
8+
// UNSUPPORTED: use_os_stdlib
9+
710
@propertyWrapper
811
struct SuccessTracker {
912
private var _stored: Bool

test/Concurrency/Runtime/async_sequence.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
55

6+
// rdar://76038845
7+
// UNSUPPORTED: use_os_stdlib
8+
69
import StdlibUnittest
710

811
// Utility functions for closure based operators to force them into throwing

test/Concurrency/Runtime/async_task_cancellation_early.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// REQUIRES: concurrency
55
// REQUIRES: libdispatch
66

7+
// rdar://76038845
8+
// UNSUPPORTED: use_os_stdlib
9+
710
import Dispatch
811

912
func test_runDetached_cancel_child_early() async {

test/Concurrency/Runtime/async_task_cancellation_while_running.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// REQUIRES: concurrency
55
// REQUIRES: libdispatch
66

7+
// rdar://76038845
8+
// UNSUPPORTED: use_os_stdlib
9+
710
import Dispatch
811

912
func test_runDetached_cancel_while_child_running() async {

test/Concurrency/Runtime/async_task_detached.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
55

6+
// rdar://76038845
7+
// UNSUPPORTED: use_os_stdlib
8+
69
// https://bugs.swift.org/browse/SR-14333
710
// UNSUPPORTED: OS=windows-msvc
811

test/Concurrency/Runtime/async_task_equals_hashCode.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5+
6+
// rdar://76038845
7+
// UNSUPPORTED: use_os_stdlib
8+
59
// UNSUPPORTED: OS=windows-msvc
610

711
func simple() async {

test/Concurrency/Runtime/async_task_handle_cancellation.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
55

6+
// rdar://76038845
7+
// UNSUPPORTED: use_os_stdlib
8+
69
// This test is flaky on VS2017 (unknown reasons)
710
// UNSUPPORTED: MSVC_VER=15.0
811

test/Concurrency/Runtime/async_task_locals_async_let.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// REQUIRES: concurrency
55
// REQUIRES: libdispatch
66

7+
// rdar://76038845
8+
// UNSUPPORTED: use_os_stdlib
9+
710
class StringLike: CustomStringConvertible {
811
let value: String
912
init(_ value: String) {

0 commit comments

Comments
 (0)