Add initial async::context test infrastructure #20
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces basic testing infrastructure for the async context system, demonstrating coroutine scheduling and stack memory management.
Changes
coro_print()coroutine that exercisesco_awaitwith time-based suspensionmy_schedulerthat tracks sleep events and demonstrates thedo_schedule()interfacestrong_ptr<std::span<byte>>pattern for coroutine stack allocationstrong_ptr<std::span<byte>>with a safer, more ergonomic APIco_await)Current Limitations
The test reveals that the scheduler's
do_schedule()is not being invoked duringco_awaitsuspension points. This needs investigation and is tracked in #19.The current stack memory API requires two separate allocations (array + span) with no lifetime bond between them, identified as a safety concern in #18.
Test Coverage
co_awaitsync_wait()completing the coroutinePR message co-authored-by: Claude noreply@anthropic.com
Edit, the latest commit resolves #19