aboutsummaryrefslogtreecommitdiff
path: root/tests/README
diff options
context:
space:
mode:
authorDamien George2021-03-11 16:09:27 +1100
committerDamien George2021-03-12 19:56:09 +1100
commit6129b8e401c36cc68e0f7ba8180da27a40d17621 (patch)
treef9922a1f34db804d3700ca0570827c2a8762314e /tests/README
parentb24fcd7aec4b34064e9d9016d417d4ca3cc925cc (diff)
tests: Rename run-tests to run-tests.py for consistency.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/README')
-rw-r--r--tests/README6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/README b/tests/README
index f2cd89bb9..8794202e1 100644
--- a/tests/README
+++ b/tests/README
@@ -1,15 +1,15 @@
This directory contains tests for various functionality areas of MicroPython.
-To run all stable tests, run "run-tests" script in this directory.
+To run all stable tests, run "run-tests.py" script in this directory.
Tests of capabilities not supported on all platforms should be written
to check for the capability being present. If it is not, the test
should merely output 'SKIP' followed by the line terminator, and call
sys.exit() to raise SystemExit, instead of attempting to test the
-missing capability. The testing framework (run-tests in this
+missing capability. The testing framework (run-tests.py in this
directory, test_main.c in qemu_arm) recognizes this as a skipped test.
There are a few features for which this mechanism cannot be used to
-condition a test. The run-tests script uses small scripts in the
+condition a test. The run-tests.py script uses small scripts in the
feature_check directory to check whether each such feature is present,
and skips the relevant tests if not.