tests/extmod/uasyncio_gather: Make double-raise gather test reliable.

This double-raise test could fail when task[0] raises and stops the gather
before task[1] raises, then task[1] is left to raise later on and spoil the
test.

Signed-off-by: Damien George <damien@micropython.org>
pull/8565/head
Damien George 2022-04-20 17:11:55 +10:00
rodzic c8a687a8fa
commit ef1c2cdab0
2 zmienionych plików z 9 dodań i 3 usunięć

Wyświetl plik

@ -34,9 +34,10 @@ async def task_loop(id):
print("task_loop loop", id)
async def task_raise(id):
async def task_raise(id, t=0.02):
print("task_raise start", id)
await asyncio.sleep(0.02)
await asyncio.sleep(t)
print("task_raise raise", id)
raise ValueError(id)
@ -79,7 +80,8 @@ async def main():
print("====")
# Test case where both tasks raise an exception.
tasks = [asyncio.create_task(task_raise(1)), asyncio.create_task(task_raise(2))]
# Use t=0 so they raise one after the other, between the gather starting and finishing.
tasks = [asyncio.create_task(task_raise(1, t=0)), asyncio.create_task(task_raise(2, t=0))]
try:
await asyncio.gather(*tasks)
except ValueError as er:

Wyświetl plik

@ -16,16 +16,20 @@ end 2
start 1
task_raise start 2
end 1
task_raise raise 2
[1, ValueError(2,)]
====
task_loop start 1
task_raise start 2
task_loop loop 1
task_raise raise 2
ValueError(2,)
False True
====
task_raise start 1
task_raise start 2
task_raise raise 1
task_raise raise 2
ValueError(1,)
True True
====