You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
23 lines
411 B
Python
23 lines
411 B
Python
# basic tests for gc module
|
|
|
|
try:
|
|
import gc
|
|
except ImportError:
|
|
print("SKIP")
|
|
import sys
|
|
sys.exit()
|
|
|
|
print(gc.isenabled())
|
|
gc.disable()
|
|
print(gc.isenabled())
|
|
gc.enable()
|
|
print(gc.isenabled())
|
|
|
|
gc.collect()
|
|
|
|
if hasattr(gc, 'mem_free'):
|
|
# uPy has these extra functions
|
|
# just test they execute and return an int
|
|
assert type(gc.mem_free()) is int
|
|
assert type(gc.mem_alloc()) is int
|