summaryrefslogtreecommitdiff
path: root/tests/micropython/memstats.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/memstats.py')
-rw-r--r--tests/micropython/memstats.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/micropython/memstats.py b/tests/micropython/memstats.py
new file mode 100644
index 000000000..78e4d2473
--- /dev/null
+++ b/tests/micropython/memstats.py
@@ -0,0 +1,17 @@
+# tests meminfo functions in micropython module
+
+import micropython
+
+# these functions are not always available
+if not hasattr(micropython, 'mem_total'):
+ print('SKIP')
+else:
+ t = micropython.mem_total()
+ c = micropython.mem_current()
+ p = micropython.mem_peak()
+
+ l = list(range(10000))
+
+ print(micropython.mem_total() > t)
+ print(micropython.mem_current() > c)
+ print(micropython.mem_peak() > p)