|
|
|
|
|
by rwmj
268 days ago
|
|
Valgrind is a hidden super-power. In much of the software I write, there's 'make check' which runs the test cases, and 'make check-valgrind' that runs the same test cases under valgrind. The latter is only used on developer machines. It often reveals memory leaks or other subtle memory bugs. |
|
Having said that, it saved my ass a lot of times, and I’m very grateful that it exists.