Files
swift-mirror/test/Concurrency/Runtime/async_task_withUnsafeCurrentTask.swift
Doug Gregor 3ee09a2298 Switch concurrency runtime tests to "REQUIRES: concurrency_runtime"
Rather than blanket-disabling concurrency tests when we aren't using a
just-built concurrency library, enable them whenever we have a
suitable concurrency runtime, either just-built, in the OS, or via the
back-deployment libraries.
2021-09-13 12:34:20 -07:00

40 lines
944 B
Swift

// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking -parse-as-library) 2>&1 | %FileCheck %s --dump-input=always
// REQUIRES: executable_test
// REQUIRES: concurrency
// REQUIRES: swift_task_debug_log
// REQUIRES: concurrency_runtime
// UNSUPPORTED: back_deployment_runtime
#if os(Linux)
import Glibc
#elseif os(Windows)
import MSVCRT
#else
import Darwin
#endif
func test_withUnsafeCurrentTask() async {
// The task we're running in ("main")
// CHECK: creating task [[MAIN_TASK:0x.*]] with parent 0x0
// CHECK: creating task [[TASK:0x.*]] with parent 0x0
let t = Task.detached {
withUnsafeCurrentTask { task in
fputs("OK: \(task!)", stderr)
}
fputs("DONE", stderr)
}
// CHECK: OK: UnsafeCurrentTask(_task: (Opaque Value))
// CHECK: DONE
// CHECK: destroy task [[TASK]]
await t.value
}
@main struct Main {
static func main() async {
await test_withUnsafeCurrentTask()
}
}