aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2024-07-29 15:44:07 +0100
committerAlex Bennée <alex.bennee@linaro.org>2024-07-30 11:44:18 +0100
commitb421206882d8581186b2419b1292e1b189ac976c (patch)
tree73ae270fbad27616072a2a48f7e5313ca404998b /docs
parentc8d6e0422341f8ad8706a446b83a824fdfeacc11 (diff)
downloadqemu-b421206882d8581186b2419b1292e1b189ac976c.zip
qemu-b421206882d8581186b2419b1292e1b189ac976c.tar.gz
qemu-b421206882d8581186b2419b1292e1b189ac976c.tar.bz2
docs/devel: document how to run individual TCG tests
Since 6f6ca067d2 (tests/tcg: add some help output for running individual tests) we made it easier to run individual tests for a given architecture. Lets reference that in the developer documentation. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20240729144414.830369-8-alex.bennee@linaro.org>
Diffstat (limited to 'docs')
-rw-r--r--docs/devel/testing.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/devel/testing.rst b/docs/devel/testing.rst
index b984c5d..af73d3d 100644
--- a/docs/devel/testing.rst
+++ b/docs/devel/testing.rst
@@ -1490,6 +1490,19 @@ And run with::
Adding ``V=1`` to the invocation will show the details of how to
invoke QEMU for the test which is useful for debugging tests.
+Running individual tests
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+Tests can also be run directly from the test build directory. If you
+run ``make help`` from the test build directory you will get a list of
+all the tests that can be run. Please note that same binaries are used
+in multiple tests, for example::
+
+ make run-plugin-test-mmap-with-libinline.so
+
+will run the mmap test with the ``libinline.so`` TCG plugin. The
+gdbstub tests also re-use the test binaries but while exercising gdb.
+
TCG test dependencies
~~~~~~~~~~~~~~~~~~~~~