Ask HN: What are some good examples of test-driven C codebases?

3 points by ngcazz ↗ HN

4 comments

[ 3.2 ms ] story [ 21.1 ms ] thread
Sqlite [0] seems to have quite a complete test suite.

[0] https://www.sqlite.org/testing.html

having a test suite is different from being test driven .
True, but having a test suite is necessary if you are test-driven. With the almost fanatical use of test code in Sqlite I cannot imagine they wouldn't write the tests before implementing a new feature, ie, test-driven.
Thanks, I'll have a good look.