Files
swift-mirror/test/Concurrency/Runtime/async_task_sleep.swift
Mike Ash 29efab6ccc [Concurrency] Fix Task.sleep on values greater than Int64.max.
In the Dispatch implementation, clamp the delay to INT64_MAX. Swift's nanoseconds value is unsigned, but we ultimately use it with dispatch_time, which takes a signed int64_t. Extremely large values get interpreted as negative, which results in not sleeping.

INT64_MAX nanoseconds is about 292 years, so it should be difficult to notice a practical effect from sleeping for less time than requested due to the clamping.

rdar://143278824
2025-01-22 12:28:18 -05:00

77 lines
1.9 KiB
Swift

// RUN: %target-run-simple-swift( -target %target-swift-5.1-abi-triple %import-libdispatch -parse-as-library) | %FileCheck %s --dump-input always
// REQUIRES: executable_test
// REQUIRES: concurrency
// REQUIRES: libdispatch
// rdar://76038845
// REQUIRES: concurrency_runtime
// UNSUPPORTED: back_deployment_runtime
import _Concurrency
// FIXME: should not depend on Dispatch
import Dispatch
@available(SwiftStdlib 5.1, *)
@main struct Main {
static let pause = 500_000_000 // 500ms
static func main() async {
await testSleepDuration()
await testSleepDoesNotBlock()
await testSleepHuge()
}
static func testSleepDuration() async {
let start = DispatchTime.now()
await Task.sleep(UInt64(pause))
let stop = DispatchTime.now()
// assert that at least the specified time passed since calling `sleep`
assert(stop >= (start + .nanoseconds(pause)))
}
static func testSleepDoesNotBlock() async {
// FIXME: Should run on main executor
let task = detach {
print("Run first")
}
await Task.sleep(UInt64(pause))
print("Run second")
// CHECK: Run first
// CHECK: Run second
await task.get()
}
static func testSleepHuge() async {
// Make sure nanoseconds values about Int64.max don't get interpreted as
// negative and fail to sleep.
let task1 = detach {
try await Task.sleep(nanoseconds: UInt64(Int64.max) + 1)
}
let task2 = detach {
try await Task.sleep(nanoseconds: UInt64.max)
}
try! await Task.sleep(nanoseconds: UInt64(pause))
task1.cancel()
task2.cancel()
// These should throw due to being canceled. If the sleeps completed then
// the cancellation will do nothing and we won't throw, which is a failure.
do {
_ = try await task1.value
fatalError("Sleep 1 completed early.")
} catch {}
do {
_ = try await task2.value
fatalError("Sleep 2 completed early.")
} catch {}
}
}