blob: f4dd8fdb6042ce943516e075d5aee284fb53932a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# tests meminfo functions in micropython module
try:
import micropython
micropython.mem_info
except (ImportError, AttributeError):
print("SKIP")
raise SystemExit
micropython.mem_info()
micropython.mem_info(1)
micropython.qstr_info()
micropython.qstr_info(1)
|