2015-04-04 17:05:30 -04:00
|
|
|
# tests meminfo functions in micropython module
|
|
|
|
|
|
|
|
import micropython
|
|
|
|
|
|
|
|
# these functions are not always available
|
2021-03-15 09:57:36 -04:00
|
|
|
if not hasattr(micropython, "mem_info"):
|
|
|
|
print("SKIP")
|
2015-04-04 17:05:30 -04:00
|
|
|
else:
|
|
|
|
micropython.mem_info()
|
|
|
|
micropython.mem_info(1)
|
|
|
|
micropython.qstr_info()
|
|
|
|
micropython.qstr_info(1)
|