Check Plus: An EDSL for writing unit tests in C

from blog Posts on Made of Bugs, | ↗ original
Check is an excellent unit-testing framework for C code, used by a number of relatively well-known projects. It includes features such as running all tests in separate address spaces (using fork(2)), which means that the test suite can properly report segfaults or similar crashes without the test runner crashes. My main complaint about Check is...