From: SeongJae Park Date: Sat, 7 Sep 2019 21:01:31 +0000 (+0900) Subject: Documentation: kunit: Fix verification command X-Git-Tag: v5.5-rc1~190^2~2 X-Git-Url: https://repo.jachan.dev/linux.git/commitdiff_plain/d460623c5fa126dc51bb2571dd7714ca75b0116c 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 Reviewed-by: Brendan Higgins Signed-off-by: Shuah Khan --- 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.