commit | f35c5f8381034466d973ad1967513a0c6b15ffbc | [log] [tgz] |
---|---|---|
author | David Gow <davidgow@google.com> | Sat Feb 19 11:00:17 2022 +0800 |
committer | David Gow <davidgow@google.com> | Sat Feb 19 11:36:20 2022 +0800 |
tree | b9afbc9e8c3dd1fce8162413d98a31cb40bde122 | |
parent | 32ae6ff5dc2fa0b15bae7b9abbc31abc0001eee0 [diff] |
press: Add LCA2022 talk link. I made this one a YouTube link, as the conference page for it doesn't actually have a link to the video recording or the slides. (The Kernel miniconf page does, but it's one shated page for all LCA kernel miniconfs since the beginning of time, so doesn't make for a great link target.) Change-Id: I5cafd1693e90ee7d88eee28437d52814f9b552b3
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