mirror of
https://github.com/micropython/micropython.git
synced 2026-01-12 06:57:14 +01:00
15 lines
277 B
Python
15 lines
277 B
Python
# 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)
|