Useful Commands
Building and Running KUnit Manually
Sometimes for debugging kunit.py or the interaction between the KUnit kernel and kunit.py, it is useful to build and run the tests manually:
cp kunitconfig .config
make ARCH=um -j 12
./linux mem=1G log_buf_len=2M
Cleaning the Kernel
As typical, cleaning object files can be accomplished with:
make clean
and the tree can be fully cleaned with:
make mrproper