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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'linux-kselftest-kunit-fixes-5.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest

Pull KUnit fix from Shuah Khan:
"A single documentation fix to incorrect and outdated usage
information"

* tag 'linux-kselftest-kunit-fixes-5.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
Documentation: kunit: fix path to .kunitconfig in start.rst

+8 -3
+8 -3
Documentation/dev-tools/kunit/start.rst
··· 41 41 CONFIG_MSDOS_FS=y 42 42 CONFIG_FAT_KUNIT_TEST=y 43 43 44 - 1. A good starting point for the ``.kunitconfig``, is the KUnit default 45 - config. Run the command: 44 + 1. A good starting point for the ``.kunitconfig`` is the KUnit default config. 45 + You can generate it by running: 46 46 47 47 .. code-block:: bash 48 48 49 49 cd $PATH_TO_LINUX_REPO 50 - cp tools/testing/kunit/configs/default.config .kunitconfig 50 + tools/testing/kunit/kunit.py config 51 + cat .kunit/.kunitconfig 52 + 53 + .. note :: 54 + ``.kunitconfig`` lives in the ``--build_dir`` used by kunit.py, which is 55 + ``.kunit`` by default. 51 56 52 57 .. note :: 53 58 You may want to remove CONFIG_KUNIT_ALL_TESTS from the ``.kunitconfig`` as