I am hoping that someone can point me toward Linux software similar to the Microsoft tools Application Verifier and Driver Verifier. (They are stress testers for Windows applications and drivers, respectively.)
Do such things exist for Linux?
|
3
|
I am hoping that someone can point me toward Linux software similar to the Microsoft tools Application Verifier and Driver Verifier. (They are stress testers for Windows applications and drivers, respectively.) Do such things exist for Linux?
|
|||
|
|
|
|
I'm not familiar with Application Verifier and Driver Verifier at all... For applications, Valgrind is very useful as a tool to check for leaks, use-after-free, double free, buffer overflow, use of unitialized data, unsafe concurrent data access, and much more. There also exist many fuzzers (zzuf, fusil, etc.) which test a program's resiliance to invalid input. GCC itself has In the Linux kernel, there are many configuration switches under the "Kernel hacking" menu:
|
||
|
|