diff options
author | Simon Glass <sjg@chromium.org> | 2021-03-07 17:34:39 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-12 09:57:29 -0500 |
commit | 8d16ebdf81cda3e07eb76cd7f2efc52cbaf0475b (patch) | |
tree | b2d6fcf8d8381a12065c3a3e56d35b3b4932a6ee /doc/develop | |
parent | ccf69386b79f6987cfebaeb823b5234a93cb118c (diff) | |
download | u-boot-8d16ebdf81cda3e07eb76cd7f2efc52cbaf0475b.tar.gz |
doc: Document make tcheck
Add a comment about this option in the documentation. Also mention the
script that runs these combinations.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'doc/develop')
-rw-r--r-- | doc/develop/testing.rst | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/develop/testing.rst b/doc/develop/testing.rst index bc74eb53e3..f01ca4dc40 100644 --- a/doc/develop/testing.rst +++ b/doc/develop/testing.rst @@ -15,10 +15,20 @@ To run most tests on sandbox, type this:: in the U-Boot directory. Note that only the pytest suite is run using this command. -Some tests take ages to run. To run just the quick ones, type this:: +Some tests take ages to run and are marked with @pytest.mark.slow. To run just +the quick ones, type this:: make qcheck +It is also possible to run just the tests for tools (patman, binman, etc.). +Such tests are included with those tools, i.e. no actual U-Boot unit tests are +run. Type this:: + + make tcheck + +All of the above use the test/run script with a paremeter to select which tests +are run. + Sandbox ------- |