tests/micropython/extreme_exc.py: Fix test to run on more ports/configs.

pull/3696/merge
Damien George 2018-04-05 02:33:48 +10:00
rodzic f1df86a017
commit 4caadc3c01
2 zmienionych plików z 12 dodań i 2 usunięć

Wyświetl plik

@ -2,6 +2,15 @@
import micropython
# Check for stackless build, which can't call functions without
# allocating a frame on the heap.
try:
def stackless(): pass
micropython.heap_lock(); stackless(); micropython.heap_unlock()
except RuntimeError:
print("SKIP")
raise SystemExit
# some ports need to allocate heap for the emergency exception
try:
micropython.alloc_emergency_exception_buf(256)
@ -40,8 +49,9 @@ def main():
f(abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz=1)
except Exception as er:
e = er
lst[0] = None
lst = None
print(repr(e))
print(repr(e)[:43])
# raise a deep exception with the heap locked
# should use emergency exception and be unable to resize traceback array

Wyświetl plik

@ -1,5 +1,5 @@
Exception()
TypeError("unexpected keyword argument 'abcdefghij
TypeError("unexpected keyword argument 'abc",)
TypeError("unexpected keyword argument 'abc
RuntimeError('maximum recursion depth exceeded',)
Exception('my exception',)