summaryrefslogtreecommitdiffstatshomepage
path: root/tests/run-natmodtests.py
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2023-07-14 17:24:20 +1000
committerDamien George <damien@micropython.org>2023-07-21 19:32:42 +1000
commitea1a5e43d08429bed96e251f68f77aa0334bb371 (patch)
treeb8fffcf5859baae3c6778bf3745664b388abe6b9 /tests/run-natmodtests.py
parentb804443cb3df2ca4b71070739aa1c8f3c86464fc (diff)
downloadmicropython-ea1a5e43d08429bed96e251f68f77aa0334bb371.tar.gz
micropython-ea1a5e43d08429bed96e251f68f77aa0334bb371.zip
examples/natmod/deflate: Add deflate as a dynamic native module.
This replaces the previous zlib version. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'tests/run-natmodtests.py')
-rwxr-xr-xtests/run-natmodtests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-natmodtests.py b/tests/run-natmodtests.py
index ce4f941350..5764021472 100755
--- a/tests/run-natmodtests.py
+++ b/tests/run-natmodtests.py
@@ -21,6 +21,7 @@ NATMOD_EXAMPLE_DIR = "../examples/natmod/"
# Supported tests and their corresponding mpy module
TEST_MAPPINGS = {
"btree": "btree/btree_$(ARCH).mpy",
+ "deflate": "deflate/deflate_$(ARCH).mpy",
"framebuf": "framebuf/framebuf_$(ARCH).mpy",
"heapq": "heapq/heapq_$(ARCH).mpy",
"random": "random/random_$(ARCH).mpy",