Documentation: KUnit: add note about mrproper in start.rst
authorTales Aparecida <tales.aparecida@gmail.com>
Mon, 22 Aug 2022 02:26:41 +0000 (23:26 -0300)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 30 Sep 2022 19:20:51 +0000 (13:20 -0600)
The "Getting Started" guide should be beginner-friendly, therefore
add a note about the requirement of a clean source tree when running
kunit_tool for the first time, and its related error.

Signed-off-by: Tales Aparecida <tales.aparecida@gmail.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Documentation/dev-tools/kunit/start.rst

index 2e31350..9beec7d 100644 (file)
@@ -19,6 +19,22 @@ can run kunit_tool:
 
        ./tools/testing/kunit/kunit.py run
 
+.. note ::
+       You may see the following error:
+       "The source tree is not clean, please run 'make ARCH=um mrproper'"
+
+       This happens because internally kunit.py specifies ``.kunit``
+       (default option) as the build directory in the command ``make O=output/dir``
+       through the argument ``--build_dir``.  Hence, before starting an
+       out-of-tree build, the source tree must be clean.
+
+       There is also the same caveat mentioned in the "Build directory for
+       the kernel" section of the :doc:`admin-guide </admin-guide/README>`,
+       that is, its use, it must be used for all invocations of ``make``.
+       The good news is that it can indeed be solved by running
+       ``make ARCH=um mrproper``, just be aware that this will delete the
+       current configuration and all generated files.
+
 If everything worked correctly, you should see the following:
 
 .. code-block::