2018-04-04 11:06:40 -04:00
|
|
|
# test some extreme cases of allocating exceptions and tracebacks
|
|
|
|
|
|
|
|
import micropython
|
|
|
|
|
2018-04-04 12:33:48 -04:00
|
|
|
# Check for stackless build, which can't call functions without
|
|
|
|
# allocating a frame on the heap.
|
|
|
|
try:
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 12:33:48 -04:00
|
|
|
def stackless():
|
|
|
|
pass
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 12:33:48 -04:00
|
|
|
micropython.heap_lock()
|
|
|
|
stackless()
|
|
|
|
micropython.heap_unlock()
|
|
|
|
except RuntimeError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
2018-04-04 11:06:40 -04:00
|
|
|
# some ports need to allocate heap for the emergency exception
|
|
|
|
try:
|
|
|
|
micropython.alloc_emergency_exception_buf(256)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 11:06:40 -04:00
|
|
|
def main():
|
|
|
|
# create an exception with many args while heap is locked
|
|
|
|
# should revert to empty tuple for args
|
|
|
|
micropython.heap_lock()
|
|
|
|
e = Exception(
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
2020-03-22 22:26:08 -04:00
|
|
|
0,
|
2018-04-04 11:06:40 -04:00
|
|
|
)
|
|
|
|
micropython.heap_unlock()
|
|
|
|
print(repr(e))
|
|
|
|
|
|
|
|
# create an exception with a long formatted error message while heap is locked
|
|
|
|
# should use emergency exception buffer and truncate the message
|
|
|
|
def f():
|
|
|
|
pass
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 11:06:40 -04:00
|
|
|
micropython.heap_lock()
|
|
|
|
try:
|
|
|
|
f(
|
|
|
|
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz=1
|
|
|
|
)
|
|
|
|
except Exception as er:
|
|
|
|
e = er
|
|
|
|
micropython.heap_unlock()
|
2018-04-04 13:03:16 -04:00
|
|
|
print(repr(e)[:10])
|
2018-04-04 11:06:40 -04:00
|
|
|
|
|
|
|
# create an exception with a long formatted error message while heap is low
|
|
|
|
# should use the heap and truncate the message
|
|
|
|
lst = []
|
|
|
|
while 1:
|
|
|
|
try:
|
|
|
|
lst = [lst]
|
|
|
|
except MemoryError:
|
|
|
|
break
|
|
|
|
try:
|
|
|
|
f(
|
|
|
|
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz=1
|
|
|
|
)
|
|
|
|
except Exception as er:
|
|
|
|
e = er
|
2022-05-17 19:16:33 -04:00
|
|
|
while lst:
|
|
|
|
lst[0], lst = None, lst[0] # unlink lists to free up heap
|
2018-04-04 13:03:16 -04:00
|
|
|
print(repr(e)[:10])
|
2018-04-04 11:06:40 -04:00
|
|
|
|
|
|
|
# raise a deep exception with the heap locked
|
|
|
|
# should use emergency exception and be unable to resize traceback array
|
|
|
|
def g():
|
|
|
|
g()
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 11:06:40 -04:00
|
|
|
micropython.heap_lock()
|
|
|
|
try:
|
|
|
|
g()
|
|
|
|
except Exception as er:
|
|
|
|
e = er
|
|
|
|
micropython.heap_unlock()
|
2018-04-04 13:03:16 -04:00
|
|
|
print(repr(e)[:13])
|
2018-04-04 11:06:40 -04:00
|
|
|
|
|
|
|
# create an exception on the heap with some traceback on the heap, but then
|
|
|
|
# raise it with the heap locked so it can't allocate any more traceback
|
|
|
|
exc = Exception("my exception")
|
|
|
|
try:
|
|
|
|
raise exc
|
|
|
|
except:
|
|
|
|
pass
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 11:06:40 -04:00
|
|
|
def h(e):
|
|
|
|
raise e
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 11:06:40 -04:00
|
|
|
micropython.heap_lock()
|
|
|
|
try:
|
|
|
|
h(exc)
|
|
|
|
except Exception as er:
|
|
|
|
e = er
|
|
|
|
micropython.heap_unlock()
|
|
|
|
print(repr(e))
|
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-04-04 11:06:40 -04:00
|
|
|
main()
|