diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2023-07-14 17:24:20 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-07-21 19:32:42 +1000 |
commit | ea1a5e43d08429bed96e251f68f77aa0334bb371 (patch) | |
tree | b8fffcf5859baae3c6778bf3745664b388abe6b9 /tests/run-natmodtests.py | |
parent | b804443cb3df2ca4b71070739aa1c8f3c86464fc (diff) | |
download | micropython-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-x | tests/run-natmodtests.py | 1 |
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", |