aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Documentation/dev-tools
diff options
context:
space:
mode:
authorSeongJae Park <sj38.park@gmail.com>2019-09-08 06:01:31 +0900
committerShuah Khan <skhan@linuxfoundation.org>2019-10-07 17:02:13 -0600
commitd460623c5fa126dc51bb2571dd7714ca75b0116c (patch)
tree552e8053f8cdb1d74028fe081a788cb86e2bbdef /Documentation/dev-tools
parentkunit: Fix '--build_dir' option (diff)
downloadwireguard-linux-d460623c5fa126dc51bb2571dd7714ca75b0116c.tar.xz
wireguard-linux-d460623c5fa126dc51bb2571dd7714ca75b0116c.zip
Documentation: kunit: Fix verification command
kunit wrapper script ('kunit.py') receives a sub-command (only 'run' for now) as its argument. If no sub-command is given, it prints help message and just quit. However, an example command in the kunit documentation for a verification of kunit is missing the sub-command. This commit fixes the example. Signed-off-by: SeongJae Park <sj38.park@gmail.com> Reviewed-by: Brendan Higgins <brendanhiggins@google.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'Documentation/dev-tools')
-rw-r--r--Documentation/dev-tools/kunit/start.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/dev-tools/kunit/start.rst b/Documentation/dev-tools/kunit/start.rst
index 6dc229e46bb3..aeeddfafeea2 100644
--- a/Documentation/dev-tools/kunit/start.rst
+++ b/Documentation/dev-tools/kunit/start.rst
@@ -43,7 +43,7 @@ wrapper from your kernel repo:
.. code-block:: bash
- ./tools/testing/kunit/kunit.py
+ ./tools/testing/kunit/kunit.py run
.. note::
You may want to run ``make mrproper`` first.