Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-09-27 | Make function parameters const wherever possible | David Robillard | 1 | -2/+5 | |
The early history of this code didn't tend to make parameters const, but the "const density" is high enough now that I often find myself wondering if something is mutable for some reason, or just old and sloppier. So, eliminate this confusion by making (hopefully) all function parameters const if possible. | |||||
2024-09-01 | Use a consistent naming scheme for test helper functions | David Robillard | 1 | -48/+23 | |
2024-08-03 | Fix reading chunks from files without trailing newlines | David Robillard | 1 | -7/+10 | |
2024-08-03 | Cover bulk and byte-wise reading in reader EOF test | David Robillard | 1 | -4/+11 | |
2024-06-27 | Split out simple reader unit tests | David Robillard | 1 | -0/+437 | |
Some of the simpler tests here only test the reader directly, while others are higher level tests that test both the writer and reader together. Split the simple reader-only tests into a separate file so things can be cleaned up and simplified for each kind of test. |