Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2025-03-16 | Avoid implicit double promotion | David Robillard | 1 | -2/+2 | |
2025-03-16 | Avoid "static inline" outside headers | David Robillard | 1 | -1/+1 | |
2025-03-16 | Disable meson implicit include directories anti-feature | David Robillard | 2 | -0/+2 | |
2025-03-16 | Fix reading prefix names that start with "true." or "false." | David Robillard | 3 | -0/+14 | |
2025-03-16 | Fix reading numbers with no space before the final dot | David Robillard | 11 | -0/+60 | |
2025-03-16 | Refuse to write incoherent statements | David Robillard | 2 | -14/+73 | |
2025-02-25 | Isolate standalone writer tests | David Robillard | 2 | -42/+58 | |
Move these to test_writer so that test_reader_writer is focused on the file-based case where the writer output is later read. | |||||
2025-02-23 | Fix doc comment syntax | David Robillard | 1 | -1/+1 | |
2025-01-30 | Fix handling of some invalid EOF cases in lax mode | David Robillard | 2 | -3/+15 | |
The return status of these tests unfortunately isn't consistent, so instead of testing for an exact exit status, instead check that the return status doesn't seem to be an abort() or other signal code (which are negative on Linux, while serdi itself never exits with a negative status). | |||||
2025-01-30 | Separate EOF tests from catch-all "bad" test suite | David Robillard | 40 | -216/+234 | |
2025-01-19 | Fix building lint tests when serdi is unavailable | David Robillard | 1 | -8/+10 | |
2025-01-10 | Use cppcheck working directory | David Robillard | 2 | -128/+132 | |
This allows for better analysis, and adds a cache to improve checking times, especially on repeated runs. | |||||
2024-12-11 | Always assert the return value of fopen() in tests | David Robillard | 2 | -2/+6 | |
2024-12-11 | Ensure success of fclose() for writable files in tests | David Robillard | 3 | -8/+10 | |
2024-12-11 | Avoid assignments in assert statements | David Robillard | 1 | -5/+9 | |
The ways these tests are written fundamentally requires assertions to always run, but some tools like to warn about it anyway, so avoid obvious cases. | |||||
2024-11-23 | Use angle brackets for library includes | David Robillard | 9 | -9/+9 | |
2024-10-06 | Clean up lint test definitions | David Robillard | 1 | -22/+20 | |
2024-10-06 | Check all sources in clang-format test | David Robillard | 1 | -6/+12 | |
2024-10-06 | Relocate lint test definitions | David Robillard | 1 | -135/+135 | |
Towards reusing source lists for checks across all the code (not just the library sources). | |||||
2024-09-28 | Add clang-format lint test | David Robillard | 1 | -0/+11 | |
2024-09-28 | Add cppcheck lint test | David Robillard | 1 | -0/+21 | |
2024-09-27 | Make more pointer variables const | David Robillard | 1 | -2/+3 | |
2024-09-27 | Make function parameters const wherever possible | David Robillard | 5 | -14/+19 | |
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-27 | Clean up and update clang-format configuration | David Robillard | 1 | -2/+1 | |
Fix "SERD_CONST_FINC" typo, add the other function attributes, and sort all fields. | |||||
2024-09-21 | Remove pointless and inconsistent printing from unit tests | David Robillard | 5 | -10/+0 | |
2024-09-21 | Factor out test runner script argument and output parsing | David Robillard | 4 | -46/+41 | |
2024-09-01 | Use a consistent naming scheme for test helper functions | David Robillard | 3 | -101/+76 | |
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-07-16 | Suppress new warnings in clang and clang-tidy 18 | David Robillard | 1 | -0/+2 | |
2024-06-27 | Split out simple reader unit tests | David Robillard | 3 | -341/+441 | |
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. | |||||
2024-06-26 | Factor out URI prefix in some tests | David Robillard | 2 | -25/+28 | |
2024-06-25 | Improve test suite coverage | David Robillard | 15 | -20/+198 | |
2024-06-25 | Fix overly permissive parsing of syntax names on the command line | David Robillard | 1 | -2/+3 | |
2024-06-24 | Write blank lines between graphs and statements in TriG | David Robillard | 1 | -3/+13 | |
2024-06-23 | Gracefully handle failure to terminate written anonymous nodes | David Robillard | 1 | -0/+30 | |
This case shouldn't be reachable when driven directly from a reader, but can be reached by invalid use of the writer in an application. | |||||
2024-06-23 | Fix writer cleanup test | David Robillard | 1 | -8/+18 | |
Because nodes are shallow, this wasn't actually writing a stack of nested objects. Fix the blank node ping-pong algorithm so that it does. | |||||
2024-06-23 | Simplify pylint test definition | David Robillard | 1 | -4/+3 | |
2024-06-23 | Check that header has zero code complexity | David Robillard | 1 | -1/+4 | |
2024-06-23 | Remove redundant test manifest entry | David Robillard | 1 | -1/+0 | |
2024-06-22 | Strengthen clang-tidy configuration | David Robillard | 1 | -1/+5 | |
2024-06-09 | Add missing entries to "good" test manifest | David Robillard | 1 | -6/+18 | |
2024-06-09 | Treat out of range unicode characters as errors | David Robillard | 5 | -7/+8 | |
2024-06-09 | Add test cases for special characters in local names | David Robillard | 6 | -1/+59 | |
2024-06-07 | Add test cases for lax TriG parsing | David Robillard | 4 | -0/+38 | |
2024-06-07 | Add test case for bad graph URIs in NQuads | David Robillard | 2 | -2/+2 | |
2024-06-04 | Suppress new warnings in clang-tidy 17 | David Robillard | 1 | -1/+2 | |
2024-03-29 | Add NTriples test cases for bad blank nodes and trailing garbage | David Robillard | 3 | -0/+14 | |
2024-03-29 | Fix lax NQuads parsing | David Robillard | 14 | -25/+98 | |
2024-03-29 | Support reading lone lists in lax mode | David Robillard | 3 | -0/+10 | |
This allows parsing documents like "(42) ." |