summaryrefslogtreecommitdiff
path: root/doc/develop/testing.rst
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-08 03:34:43 +0300
committerTom Rini <trini@konsulko.com>2021-03-12 17:57:29 +0300
commite56c09457e07dc32cffeac5b7fdbb06f5a773d16 (patch)
treea54d7960e4dc4e5180a26caf0de7b4c742b97dc8 /doc/develop/testing.rst
parent4c8850aafc10d368cef575b31d1b931d3d2ca597 (diff)
downloadu-boot-e56c09457e07dc32cffeac5b7fdbb06f5a773d16.tar.xz
doc: Document how sandbox_spl_tests are run
Add a few notes about the sandbox_spl tests, since they are special. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Pratyush Yadav <p.yadav@ti.com>
Diffstat (limited to 'doc/develop/testing.rst')
-rw-r--r--doc/develop/testing.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/develop/testing.rst b/doc/develop/testing.rst
index 87c90eee27..b181c2e2e4 100644
--- a/doc/develop/testing.rst
+++ b/doc/develop/testing.rst
@@ -58,6 +58,11 @@ also select particular tests with -k::
./test/py/test.py --bd sandbox_flattree --build -k hello
+There are some special tests that run in SPL. For this you need the sandbox_spl
+build::
+
+ ./test/py/test.py --bd sandbox_spl --build -k test_spl
+
See test/py/README.md for more information about the pytest suite.
See :doc:`tests_sandbox` for how to run tests directly (not through pytest).