diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2022-09-19 12:03:38 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-09-19 23:51:10 +1000 |
| commit | 6ecdf1a240e43bd60c824c7efd575c0a82d02d7e (patch) | |
| tree | 5d987a8b9c4cd93f0bc2326eebb6bf7b6516e1b1 /tools/ci.sh | |
| parent | 9ae8d3820474a9525d707b1e19f7703721aec1c8 (diff) | |
tests/frozen: Move frozentest.mpy from ports/ to tests/.
frozentest.mpy was previously duplicated in ports/minimal and
ports/powerpc.
This needs to be re-generated on every .mpy version increase, so might as
well just have a single copy of it.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'tools/ci.sh')
| -rwxr-xr-x | tools/ci.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 9c670b7be..9963f7796 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -75,8 +75,8 @@ function ci_mpy_format_setup { function ci_mpy_format_test { # Test mpy-tool.py dump feature on bytecode - python2 ./tools/mpy-tool.py -xd ports/minimal/frozentest.mpy - python3 ./tools/mpy-tool.py -xd ports/minimal/frozentest.mpy + python2 ./tools/mpy-tool.py -xd tests/frozen/frozentest.mpy + python3 ./tools/mpy-tool.py -xd tests/frozen/frozentest.mpy # Test mpy-tool.py dump feature on native code make -C examples/natmod/features1 |
