Skip to content

Commit cdac1ea

Browse files
committed
[concurrency] Disable custom executor tests on Windows since they seem to hang.
Custom executor isn't a true feature yet, so I am disabling on Windows until we can look at why the hangs are occuring on Windows. (cherry picked from commit dae605a)
1 parent 3a53f74 commit cdac1ea

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

test/Concurrency/Runtime/custom_executors.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// UNSUPPORTED: back_deployment_runtime
88
// UNSUPPORTED: use_os_stdlib
99

10+
// Disabled until test hang can be looked at.
11+
// UNSUPPORTED: OS=windows-msvc
12+
1013
actor Simple {
1114
var count = 0
1215
func report() {

test/Concurrency/Runtime/exclusivity_custom_executors.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// UNSUPPORTED: back_deployment_runtime
88
// UNSUPPORTED: use_os_stdlib
99

10+
// Disabled until test hang can be looked at.
11+
// UNSUPPORTED: OS=windows-msvc
12+
1013
// This test makes sure that we properly save/restore access when we
1114
// synchronously launch a task from a serial executor. The access from the task
1215
// should be merged into the already created access set while it runs and then

test/Concurrency/Runtime/exclusivity_custom_executors_filecheck.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// UNSUPPORTED: back_deployment_runtime
88
// UNSUPPORTED: use_os_stdlib
99

10+
// Disabled until test hang can be looked at.
11+
// UNSUPPORTED: OS=windows-msvc
12+
1013
// Only enabled if our stdlib has asserts enabled since the exclusivity runtime
1114
// will only emit logging when the stdlib is compiled with asserts. This is done
1215
// on purpose since we do not want to ship the runtime with this logging even

0 commit comments

Comments
 (0)