aboutsummaryrefslogtreecommitdiff
path: root/tests/extmod/uasyncio_wait_for.py.exp
AgeCommit message (Collapse)Author
2020-12-02extmod/uasyncio: Fix cancellation handling of wait_for.Damien George
This commit switches the roles of the helper task from a cancellation task to a runner task, to get the correct semantics for cancellation of wait_for. Some uasyncio tests are now disabled for the native emitter due to issues with native code generation of generators and yield-from. Fixes #5797. Signed-off-by: Damien George <damien@micropython.org>
2020-03-26tests/extmod: Add uasyncio tests.Damien George
All .exp files are included because they require CPython 3.8 which may not always be available.