Files
micropython/tests/micropython/heapalloc_fail_memoryview.py
2025-10-01 23:59:15 +10:00

35 lines
623 B
Python

# test handling of failed heap allocation with memoryview
try:
import micropython
micropython.heap_lock
except (ImportError, AttributeError):
print("SKIP")
raise SystemExit
class GetSlice:
def __getitem__(self, idx):
return idx
sl = GetSlice()[:]
# create memoryview
micropython.heap_lock()
try:
memoryview(b"")
except MemoryError:
print("MemoryError: memoryview create")
micropython.heap_unlock()
# memoryview get with slice
m = memoryview(b"")
micropython.heap_lock()
try:
m[sl]
except MemoryError:
print("MemoryError: memoryview subscr get")
micropython.heap_unlock()