Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-04-05 | Clean up relative URI unit tests | David Robillard | 1 | -31/+156 | |
2023-04-05 | Clean up Python scripts and add a formatting test | David Robillard | 6 | -101/+123 | |
2023-04-05 | Use shorter URIs in lax tests | David Robillard | 2 | -12/+12 | |
2023-04-05 | Update to clang-format 12 | David Robillard | 3 | -134/+79 | |
2023-04-05 | Simplify writing URI delimiters | David Robillard | 1 | -10/+5 | |
2023-04-05 | Fix potential memory leaks when a write is aborted | David Robillard | 3 | -69/+133 | |
Also clean up and simplify writer context management in general. | |||||
2023-04-05 | Remove redundant null check in serd_env_set_base_uri() | David Robillard | 1 | -2/+2 | |
The env parameter here is declared as nonnull in the API, so it is an error to call it with NULL (which clang can statically flag as a warning). | |||||
2023-04-05 | Strengthen URI utility unit tests | David Robillard | 1 | -6/+29 | |
2023-04-05 | Shrink UTF-8 utility code | David Robillard | 1 | -36/+5 | |
I've found that the negative cache impact of the 32-byte lookup table here can be worse than the simple conditional code in real-world scenarios (even though it's faster in micro-benchmarks). So, go with the simple (and conveniently more terse) thing. | |||||
2023-04-05 | Add nullability annotations to internal node functions | David Robillard | 1 | -6/+7 | |
2023-04-05 | Use distinct include guards for internal headers | David Robillard | 12 | -47/+47 | |
2023-04-05 | Use conventional status variable name | David Robillard | 1 | -17/+17 | |
2023-04-05 | Fix pretty-printing of anonymous subjects | David Robillard | 7 | -3/+134 | |
2023-04-05 | Add pretty-printing test suite | David Robillard | 32 | -110/+619 | |
The earlier "test" was just hitting the code without actually checking the output. This new suite is a set of pretty-printed documents which serd must reproduce exactly to pass. This should make it easy to add cases in the future, since each case is just a document, as it should look. | |||||
2023-04-02 | Factor out common test runner utilities | David Robillard | 2 | -128/+184 | |
2023-04-02 | Fix lax test suite | David Robillard | 1 | -2/+2 | |
2023-04-02 | Improve TriG pretty-printing and remove trailing newlines | David Robillard | 4 | -8/+15 | |
2023-03-31 | Fix possible hang when writing nested Turtle lists | David Robillard | 2 | -7/+15 | |
2023-03-31 | Remove outdated test README file | David Robillard | 1 | -20/+0 | |
This has evolved into the set of "extra" tests for serd, and is no longer the pre-standard Turtle test suite this README originates from. | |||||
2023-03-31 | Fix incorrect parsing of strange quote escape patterns | David Robillard | 6 | -5/+136 | |
2023-03-31 | Factor out read_string_escape() | David Robillard | 1 | -11/+20 | |
2023-03-31 | Remove trailing whitespace | David Robillard | 2 | -4/+4 | |
2023-02-13 | Fix check for posix_fadvise | David Robillard | 1 | -1/+1 | |
2023-02-12 | Check for POSIX features with the build system | David Robillard | 4 | -42/+105 | |
2023-02-12 | Disable default Windows bloat from meson | David Robillard | 1 | -0/+1 | |
2023-02-12 | Remove dead and redundant data from good test manifest | Thomas Tanon | 1 | -8/+0 | |
2023-02-06 | Update year in version output | David Robillard | 1 | -2/+2 | |
2023-02-05 | Fix inconsistent comment style | David Robillard | 1 | -2/+2 | |
2023-02-05 | Strengthen clang warning flags | David Robillard | 1 | -2/+0 | |
2023-02-04 | Fix clang and clang-tidy warnings on Windows | David Robillard | 5 | -3/+12 | |
2023-02-03 | Suppress new warnings in clang-tidy 15 | David Robillard | 1 | -1/+2 | |
2023-01-14 | Fix and simplify library naming on Windows | David Robillard | 2 | -33/+12 | |
2022-12-20 | Fix pkg-config command in README | David Robillard | 1 | -1/+1 | |
2022-12-20 | Avoid using ASCII grave as a quote | David Robillard | 8 | -30/+31 | |
2022-12-19 | Allow SERD_API to be defined by the user | David Robillard | 2 | -9/+13 | |
2022-12-11 | Update NEWS file | David Robillard | 1 | -1/+3 | |
2022-12-10 | Make clang-tidy configuration clean when run via meson | David Robillard | 3 | -4/+5 | |
2022-12-09 | Add serd_reader_skip_until_byte() to public API | David Robillard | 6 | -9/+28 | |
2022-12-08 | Replace duplicated dox_to_sphinx script with sphinxygen dependency | David Robillard | 6 | -663/+29 | |
2022-12-04 | Clean up documentation configuration | David Robillard | 3 | -18/+75 | |
2022-11-28 | Improve serdi man page | David Robillard | 2 | -3/+39 | |
2022-11-25 | Trim redundant warning flags enabled by -Wextra and -Wpedantic | David Robillard | 4 | -23/+18 | |
2022-11-25 | Avoid use of tmpfile() | David Robillard | 1 | -28/+35 | |
Somewhat temporary solution, since we'll soon be able to use zix here which has nice portable functions to create temporary files. | |||||
2022-11-25 | Avoid creating test files in the current directory | David Robillard | 2 | -1/+22 | |
2022-11-25 | Merge similar tests | David Robillard | 3 | -143/+119 | |
2022-11-25 | Always handle the return value of serd_env_set_base_uri() | David Robillard | 3 | -16/+22 | |
2022-11-25 | Always handle the return value of eat_byte_safe() | David Robillard | 3 | -61/+56 | |
2022-11-24 | Gracefully handle bad characters in Turtle blank node syntax | David Robillard | 6 | -3/+20 | |
2022-11-24 | Gracefully handle bad characters in Turtle datatype syntax | David Robillard | 4 | -3/+14 | |
2022-11-24 | Explicitly ignore the posix_fadvise() return value | David Robillard | 2 | -2/+3 | |
I can't figure out a sensible way to test this, and even if it did fail, at most a warning message could be printed because this is just a performance hint anyway. |