diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-09-19 12:05:39 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-09-19 23:51:10 +1000 |
commit | 920da9c5e30da58d5f77b2c5e28c74e3670e6a3b (patch) | |
tree | 6a60c130a453e957d737a652c8d0c974b2fe69c9 /ports/unix/variants/coverage | |
parent | 6ecdf1a240e43bd60c824c7efd575c0a82d02d7e (diff) | |
download | micropython-920da9c5e30da58d5f77b2c5e28c74e3670e6a3b.tar.gz micropython-920da9c5e30da58d5f77b2c5e28c74e3670e6a3b.zip |
unix/variants/coverage: Add test for manifest freeze_mpy().
This uses the frozentest.mpy that is also used by ports/minimal.
Also fixes two bugs that these new tests picked up:
- File extension matching in manifestfile.py.
- Handling of freeze_mpy results in makemanifest.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'ports/unix/variants/coverage')
-rw-r--r-- | ports/unix/variants/coverage/manifest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/unix/variants/coverage/manifest.py b/ports/unix/variants/coverage/manifest.py index 6111050884..7c3d9a6b64 100644 --- a/ports/unix/variants/coverage/manifest.py +++ b/ports/unix/variants/coverage/manifest.py @@ -1,2 +1,3 @@ freeze_as_str("frzstr") freeze_as_mpy("frzmpy") +freeze_mpy("$(MPY_DIR)/tests/frozen") |