summaryrefslogtreecommitdiff
path: root/tests/basics/int_big_to_small_int29.py
blob: 438a74d2bc6a452a8b379b4db700a064c8150b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
try:
    import micropython
    micropython.heap_lock
except:
    print("SKIP")
    raise SystemExit

# All less than small int max.
for d in (0, 27, 1<<28, -1861, -(1<<28)):
    i = 1<<70
    print(i)
    j = (1<<70) + d
    print(j)
    # k should now be a small int.
    k = j - i
    print(k)

    # Now verify that working with k doesn't allocate (i.e. it's a small int).
    micropython.heap_lock()
    print(k + 20)
    print(k // 20)
    micropython.heap_unlock()