mirror of
https://github.com/micropython/micropython.git
synced 2026-01-25 13:20:20 +01:00
These tests are specifically for the command-line interface and cover: - resume/soft-reset/connect/disconnect - mount - fs cp,touch,mkdir,cat,sha256sum,rm,rmdir - eval/exec/run This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> Signed-off-by: Damien George <damien@micropython.org>
15 lines
445 B
Markdown
15 lines
445 B
Markdown
# Tests for mpremote
|
|
|
|
This directory contains a set of tests for `mpremote`.
|
|
|
|
Requirements:
|
|
- A device running MicroPython connected to a serial port on the host.
|
|
- Python 3.x, `bash` and various Unix tools such as `find`, `mktemp`, `sed`, `sort`, `tr`.
|
|
|
|
To run the tests do:
|
|
|
|
$ ./run-mpremote-tests.sh
|
|
|
|
Each test should print "OK" if it passed. Otherwise it will print "CRASH", or "FAIL"
|
|
and a diff of the expected and actual test output.
|