diff options
Diffstat (limited to 'tests/extmod/asyncio_gather_notimpl.py.exp')
-rw-r--r-- | tests/extmod/asyncio_gather_notimpl.py.exp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/extmod/asyncio_gather_notimpl.py.exp b/tests/extmod/asyncio_gather_notimpl.py.exp new file mode 100644 index 0000000000..f21614ffbe --- /dev/null +++ b/tests/extmod/asyncio_gather_notimpl.py.exp @@ -0,0 +1,14 @@ +task start 1 +task start 2 +gather_task start +RuntimeError("can't wait",) +task end 1 +task end 2 +gather_task end +==== +task start 1 +task start 2 +gather_task start +RuntimeError("can't gather",) +task end 1 +task end 2 |