diff options
| author | Thorsten von Eicken <tve@voneicken.com> | 2020-04-01 22:59:08 -0700 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2020-05-03 15:00:45 +1000 |
| commit | 952ff8a8ea9ae6128ff5225b180d8daaacf447e4 (patch) | |
| tree | c69c41d01035ec4ee279a43f460c821cf1af04f3 /tests/run-tests | |
| parent | 7d97d241e861ba4cbd44d3695d4db6184974f8f9 (diff) | |
esp32: Improve support for OTA updates.
This commit adds several small items to improve the support for OTA
updates on an esp32:
- a partition table for 4MB flash modules that has two OTA partitions ready
to go to do updates
- a GENERIC_OTA board that uses that partition table and that enables
automatic roll-back in the bootloader
- a new esp32.Partition.mark_app_valid_cancel_rollback() class-method to
signal that the boot is successful and should not be rolled back at the
next reset
- an automated test for doing an OTA update
- documentation updates
Diffstat (limited to 'tests/run-tests')
| -rwxr-xr-x | tests/run-tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index 831d2eab5..859e459fc 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -56,6 +56,7 @@ def run_micropython(pyb, args, test_file, is_special=False): special_tests = ( 'micropython/meminfo.py', 'basics/bytes_compare3.py', 'basics/builtin_help.py', 'thread/thread_exc2.py', + 'esp32/partition_ota.py', ) had_crash = False if pyb is None: |
