Skip to content

Commit f6b91c1

Browse files
Concurrency: Enable runtime tests for non-libdispatch global executor
1 parent b004396 commit f6b91c1

13 files changed

+13
-26
lines changed

test/Concurrency/Runtime/actor_keypaths.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking %import-libdispatch)
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking)
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65
// REQUIRES: concurrency_runtime
76
// UNSUPPORTED: back_deployment_runtime
87

test/Concurrency/Runtime/async_initializer.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -disable-availability-checking %import-libdispatch) | %FileCheck %s
1+
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -disable-availability-checking) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/async_let_fibonacci.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking %import-libdispatch -parse-as-library)
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library)
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/async_let_throw_completion_order.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
// rdar://81481317
2-
// RUN: %target-run-simple-swift(-Xfrontend -disable-availability-checking %import-libdispatch -parse-as-library) | %FileCheck %s
2+
// RUN: %target-run-simple-swift(-Xfrontend -disable-availability-checking -parse-as-library) | %FileCheck %s
33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://82123254
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/async_let_throws.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking %import-libdispatch -parse-as-library) | %FileCheck %s
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/async_properties_actor.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -enable-copy-propagation -Xfrontend -enable-lexical-lifetimes=false -Xfrontend -disable-availability-checking %import-libdispatch) | %FileCheck %s
1+
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -enable-copy-propagation -Xfrontend -enable-lexical-lifetimes=false -Xfrontend -disable-availability-checking) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/async_stream.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking %import-libdispatch -parse-as-library)
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library)
22

33
// REQUIRES: concurrency
4-
// REQUIRES: libdispatch
54
// REQUIRES: executable_test
65
// REQUIRES: concurrency_runtime
76

test/Concurrency/Runtime/async_task_locals_spawn_let.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library %import-libdispatch) | %FileCheck %s
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/async_task_locals_synchronous_bind.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library %import-libdispatch) | %FileCheck %s
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/async_task_locals_wrapper.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library %import-libdispatch) | %FileCheck %s
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/effectful_properties.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -disable-availability-checking %import-libdispatch) | %FileCheck %s
1+
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -disable-availability-checking) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/executor_deinit2.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -disable-availability-checking %import-libdispatch) | %FileCheck %s
1+
// RUN: %target-run-simple-swift(-parse-as-library -Xfrontend -disable-availability-checking) | %FileCheck %s
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

test/Concurrency/Runtime/task_creation.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking %import-libdispatch -parse-as-library)
1+
// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library)
22

33
// REQUIRES: executable_test
44
// REQUIRES: concurrency
5-
// REQUIRES: libdispatch
65

76
// rdar://76038845
87
// REQUIRES: concurrency_runtime

0 commit comments

Comments
 (0)