commit | f469c21ae7221118533897b868ce6fa40b23159a | [log] [tgz] |
---|---|---|
author | Daniel Latypov <dlatypov@google.com> | Tue May 04 11:00:13 2021 -0700 |
committer | Daniel Latypov <dlatypov@google.com> | Thu Aug 19 14:29:32 2021 -0700 |
tree | 2b4d156cc59827a1349aec37dd2e93c4bfb0c751 | |
parent | 04708f8ae368ef66ed161176c149d6a3d0d966e9 [diff] |
mocking.rst: add sections on comptime and linktime redirection Give examples of using #ifdef and __weak symbols to add a layer of indirection to function calls. Also show how we can combine link/compile-time indirection w/ runtime indirection to have zero-overhead for normal builds, while still limiting the scope of the changes. Change-Id: Iaccc1c1708ebbf9cb2662743aaee8fd3ccb38b03 Signed-off-by: Daniel Latypov <dlatypov@google.com>
KUnit is a lightweight unit testing and mocking framework for the Linux kernel. These tests are able to be run locally on a developer’s workstation without a VM or special hardware.
KUnit is heavily inspired by JUnit, Python’s unittest.mock, and Googletest/Googlemock for C++. KUnit defines a way to mock out C style classes and functions and create expectations on methods called within the code under test.
This is a repository to host the source for the KUnit documentation.
NOTE: There is an important distinction between KUnit‘s documentation source and it’s documentation site. As a project meant primarily to serve the development of the Linux kernel, a significant portion of our code and documentation reside in the Linux kernel codebase. Consequently, the documentation that does not live in the Linux kernel follows many of the conventions of the Linux kernel. One of these conventions is that we use Sphinx for all of our documentation. Thus, because Sphinx requires documentation to be compiled from its source files, we must have a repository for all the Sphinx source files and a separate repository for all of the generated output files to actually host the site. This is the repository for the source.
https://kunit.googlesource.com
Documentation can be built by running:
make html
Our documentation is hosted at https://github.com/google/kunit-docs. The documentation may be updated by building the documentation as described above, and then:
./deploy.sh
You can copy the files over without committing and pushing the files with:
./deploy.sh --no-commit