doc: Tidy up testing section

Tweak this so the output looks a little better.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Simon Glass 2021-03-07 17:34:38 -07:00 committed by Tom Rini
parent 20740e4fbc
commit ccf69386b7

View file

@ -8,14 +8,14 @@ tested and what tests you should write when adding a new feature.
Running tests Running tests
------------- -------------
To run most tests on sandbox, type this: To run most tests on sandbox, type this::
make check make check
in the U-Boot directory. Note that only the pytest suite is run using this in the U-Boot directory. Note that only the pytest suite is run using this
command. command.
Some tests take ages to run. To run just the quick ones, type this: Some tests take ages to run. To run just the quick ones, type this::
make qcheck make qcheck
@ -35,9 +35,9 @@ either on sandbox or on real hardware. It relies on the U-Boot console to
inject test commands and check the result. It is slower to run than C code, inject test commands and check the result. It is slower to run than C code,
but provides the ability to unify lots of tests and summarise their results. but provides the ability to unify lots of tests and summarise their results.
You can run the tests on sandbox with: You can run the tests on sandbox with::
./test/py/test.py --bd sandbox --build ./test/py/test.py --bd sandbox --build
This will produce HTML output in build-sandbox/test-log.html This will produce HTML output in build-sandbox/test-log.html
@ -58,10 +58,14 @@ Ad-hoc tests
There are several ad-hoc tests which run outside the pytest environment: There are several ad-hoc tests which run outside the pytest environment:
test/fs - File system test (shell script) test/fs
test/image - FIT and legacy image tests (shell script and Python) File system test (shell script)
test/stdint - A test that stdint.h can be used in U-Boot (shell script) test/image
trace - Test for the tracing feature (shell script) FIT and legacy image tests (shell script and Python)
test/stdint
A test that stdint.h can be used in U-Boot (shell script)
trace
Test for the tracing feature (shell script)
TODO: Move these into pytest. TODO: Move these into pytest.