Linked Questions
10 questions linked to/from How is the Linux kernel tested?
0 votes
0 answers
216 views
How is code quality maintained in linux kernel? [duplicate]
I have heard about tools like sonarsource which help in maintaining the code quality and test coverage. Why is not linux kernel development use such tools to make the work easier ?. It would be great ...
62 votes
11 answers
51k views
How is Linux kernel live debugging done and what tools are used?
What are the most common and why are uncommon methods and tools used not to do live debugging on the Linux kernel? I know that Linus, for example, is against this kind of debugging for the Linux ...
9 votes
2 answers
3k views
Perl: what does checkstack.pl in linux source do?
I am doing a project in linux kernel and I wanted to know what does this checkstack.pl do? I have never studied perl so cant understand the program. It will be great if I could understand the program ...
11 votes
1 answer
3k views
Testing a kernel module
I'm interested in mocking functions and global variables in order to unit test a kernel module. Initially tried with https://github.com/ThrowTheSwitch/CMock but ran into issues. Any articles links on ...
8 votes
1 answer
4k views
Is it feasible to unit test kernel module code ?
If so what technique should I use ? I am thinking about using hippomock as they can be used to mock "C" methods. Are there any better approaches ? If so can anyone give an advice, or do you think unit ...
3 votes
1 answer
2k views
Testing modules/drivers of Linux kernel running in any target board
How do we test the modules and drivers(like USB,I2C,HDMI etc..) of a Linux kernel running in a target board? is there any tools/frameworks doing the job? i found this thread.Can anyone suggest me the ...
1 vote
1 answer
874 views
How are the Linux kernel releases tested
I was wondering how the Linux kernel sources are tested before official release. I am aware of the question over here, but I am looking for a very specific answer to the questions, how the kernel is ...
1 vote
1 answer
850 views
Testing SLOB - how?
So I've edited SLOB to use the best-fit algorithm, both when finding a suitable page and a suitable block. But the question is, how do I test it? Should I just write user-level code that does malloc ...
3 votes
1 answer
654 views
Linux compilation | Invalid entrypoint
I am compiling a linux kernel using mipsel toolchain. Everything works fine except at the very last point which states invalid entry point: sh: 0: Can't open /arch/mips/boot/tools/entry rm -f arch/...
1 vote
1 answer
521 views
Is there any Compatibility Test Suite for Linux kernel
Is there any Compatibility Test Suite for linux kernel like we have for Android Operating system. e.g. like when we make changes to the kernel , adding static modules, adding our own programs,...