Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

KUnit: Docs: style: fix some Kconfig example issues

Fix the Kconfig example to be closer to Kconfig coding style.

Also add punctuation and a trailing slash ('/') to a sub-directory
name -- this is how the text mostly appears in other Kconfig files.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: David Gow <davidgow@google.com>
Cc: linux-kselftest@vger.kernel.org
Cc: kunit-dev@googlegroups.com
Cc: Shuah Khan <shuah@kernel.org>
Cc: Shuah Khan <skhan@linuxfoundation.org>
Cc: Brendan Higgins <brendanhiggins@google.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Randy Dunlap and committed by
Shuah Khan
1f4dde57 f7766424

+9 -9
+9 -9
Documentation/dev-tools/kunit/style.rst
··· 175 175 176 176 .. code-block:: none 177 177 178 - config FOO_KUNIT_TEST 179 - tristate "KUnit test for foo" if !KUNIT_ALL_TESTS 180 - depends on KUNIT 181 - default KUNIT_ALL_TESTS 182 - help 183 - This builds unit tests for foo. 178 + config FOO_KUNIT_TEST 179 + tristate "KUnit test for foo" if !KUNIT_ALL_TESTS 180 + depends on KUNIT 181 + default KUNIT_ALL_TESTS 182 + help 183 + This builds unit tests for foo. 184 184 185 - For more information on KUnit and unit tests in general, please refer 186 - to the KUnit documentation in Documentation/dev-tools/kunit 185 + For more information on KUnit and unit tests in general, please refer 186 + to the KUnit documentation in Documentation/dev-tools/kunit/. 187 187 188 - If unsure, say N 188 + If unsure, say N. 189 189 190 190 191 191 Test File and Module Names