summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/uasyncio_heaplock.py
blob: 3a92d36c9f57b8955df248c7fa135b5f520471cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# test that basic scheduling of tasks, and uasyncio.sleep_ms, does not use the heap

import micropython

# strict stackless builds can't call functions without allocating a frame on the heap
try:
    f = lambda: 0
    micropython.heap_lock()
    f()
    micropython.heap_unlock()
except RuntimeError:
    print("SKIP")
    raise SystemExit

try:
    import uasyncio as asyncio
except ImportError:
    try:
        import asyncio
    except ImportError:
        print("SKIP")
        raise SystemExit


async def task(id, n, t):
    for i in range(n):
        print(id, i)
        await asyncio.sleep_ms(t)


async def main():
    t1 = asyncio.create_task(task(1, 4, 20))
    t2 = asyncio.create_task(task(2, 2, 50))

    micropython.heap_lock()

    print("start")
    await asyncio.sleep_ms(1)
    print("sleep")
    await asyncio.sleep_ms(70)
    print("finish")

    micropython.heap_unlock()


asyncio.run(main())