Message ID | f8e5687f-958b-c97b-4ddb-7bbfbdfa036f@linuxfoundation.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 02c7efa43627163e489a8db87882445a0ff381f7 |
Delegated to: | Brendan Higgins |
Headers | show |
Series | [GIT,PULL] KUnit update for Linux 5.18-rc2 | expand |
The pull request you sent on Fri, 8 Apr 2022 12:55:58 -0600:
> git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-kunit-fixes-5.18-rc2
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/6c7376da23587738ab0e84b8b90b6cc02db5181e
Thank you!
diff --git a/Documentation/dev-tools/kunit/start.rst b/Documentation/dev-tools/kunit/start.rst index ad168d16968f..867a4bba6bf6 100644 --- a/Documentation/dev-tools/kunit/start.rst +++ b/Documentation/dev-tools/kunit/start.rst @@ -41,13 +41,18 @@ or ``VFAT_FS``. To run ``FAT_KUNIT_TEST``, the ``.kunitconfig`` has: CONFIG_MSDOS_FS=y CONFIG_FAT_KUNIT_TEST=y -1. A good starting point for the ``.kunitconfig``, is the KUnit default - config. Run the command: +1. A good starting point for the ``.kunitconfig`` is the KUnit default config. + You can generate it by running: .. code-block:: bash cd $PATH_TO_LINUX_REPO - cp tools/testing/kunit/configs/default.config .kunitconfig + tools/testing/kunit/kunit.py config + cat .kunit/.kunitconfig + +.. note :: + ``.kunitconfig`` lives in the ``--build_dir`` used by kunit.py, which is + ``.kunit`` by default. .. note :: You may want to remove CONFIG_KUNIT_ALL_TESTS from the ``.kunitconfig`` as