Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-10-27 | Remove "get" from accessor names | David Robillard | 2 | -5/+5 | |
2020-10-27 | Add support for parsing NaN, INF, and -INF | David Robillard | 1 | -0/+10 | |
2020-10-27 | Make serd_strtod API const-correct | David Robillard | 1 | -2/+3 | |
This is an API breakage, but a minor one (particularly since NULL is allowed) that avoids the flaw in the standard C API. | |||||
2020-10-27 | Rename SerdChunk to SerdStringView | David Robillard | 1 | -2/+2 | |
2020-10-27 | Use char* for strings in public API | David Robillard | 2 | -99/+91 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2020-10-27 | Remove useless character counting | David Robillard | 1 | -19/+9 | |
2020-10-27 | Add SerdBuffer type for mutable buffers | David Robillard | 1 | -4/+4 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2020-10-27 | Add a test for reading strings with no trailing newline | David Robillard | 1 | -0/+23 | |
2020-08-16 | Ensure that all free methods tolerate NULL | David Robillard | 1 | -0/+33 | |
2020-08-16 | Move Env tests to a separate file | David Robillard | 2 | -64/+95 | |
2020-08-16 | Add test for reading chunks | David Robillard | 1 | -0/+120 | |
2020-08-16 | Fix loop index variable type | David Robillard | 1 | -5/+5 | |
2020-08-16 | Fix handling of bad syntax that ends a collection | David Robillard | 2 | -0/+7 | |
2020-08-16 | Fix EOF and null byte handling | David Robillard | 2 | -0/+6 | |
This is a bit questionable, but the null byte support is needed for streaming over a socket where some delimiter is required. This caused a bug where serdi would hang forever on corrupt files that contain a null byte. Fix this by consuming the byte, but otherwise behaving as before. | |||||
2020-08-16 | Add a test for reading from socket-like streams | David Robillard | 1 | -0/+61 | |
2020-08-15 | Clean up reader error handling | David Robillard | 1 | -3/+3 | |
2020-08-15 | Harden prefixed name parsing | David Robillard | 2 | -0/+8 | |
2020-08-14 | Avoid use of rand() | David Robillard | 1 | -10/+3 | |
2020-08-14 | Add test for serd_strerror with unknown errors | David Robillard | 1 | -3/+6 | |
2020-08-14 | Fix Wswitch-enum warnings | David Robillard | 1 | -0/+21 | |
2020-08-14 | Add test for bad blank graph labels | David Robillard | 2 | -0/+9 | |
2020-06-21 | Cleanup: Fix uninitialised variables | David Robillard | 1 | -4/+4 | |
2020-06-21 | Cleanup: Avoid declaring multiple variables on a single line | David Robillard | 1 | -1/+2 | |
2020-06-21 | Cleanup: Avoid malloc of 0 bytes | David Robillard | 1 | -1/+1 | |
2020-06-21 | Cleanup: Remove unnecessary stores | David Robillard | 1 | -4/+3 | |
2020-06-21 | Cleanup: Remove redundant cast | David Robillard | 1 | -1/+1 | |
2020-06-21 | Clean up includes | David Robillard | 1 | -4/+5 | |
2019-12-14 | Fix function prototype | David Robillard | 1 | -1/+1 | |
2019-12-14 | Split up unit tests | David Robillard | 1 | -39/+100 | |
2019-12-08 | Fix reading from a null-delimited socket | David Robillard | 1 | -0/+61 | |
2019-10-27 | Fix EOF handling while reading in bulk or from strings | David Robillard | 5 | -0/+34 | |
2019-10-27 | Fix example prefixes in test cases | David Robillard | 10 | -10/+10 | |
2019-10-27 | Add test case for base URI with no path | David Robillard | 3 | -0/+11 | |
2019-10-27 | Fix lax handling of string errors and add separate lax test suite | David Robillard | 7 | -10/+41 | |
2019-04-19 | Fix test coverage | David Robillard | 1 | -28/+20 | |
These returns values are legacy cruft from when test success was handled manually instead of using assert. | |||||
2019-03-30 | Fix parsing "a" abbreviation without padding whitespace | David Robillard | 3 | -0/+19 | |
2019-03-17 | Fix bug parsing TriG graphs with several squashed trailing dots | David Robillard | 3 | -0/+16 | |
2019-01-05 | Fix unused parameter warnings | David Robillard | 1 | -0/+10 | |
2019-01-05 | Remove manifest test | David Robillard | 2 | -277/+0 | |
2018-12-26 | Remove test utilities and simply use assert for unit tests | David Robillard | 2 | -294/+105 | |
2018-11-11 | Add tests for misspelled prefix and base directives | David Robillard | 3 | -0/+14 | |
2018-11-11 | Remove some unnecessary test files | David Robillard | 6 | -593/+0 | |
2018-11-11 | Add test for writing URIs that can not be shortened | David Robillard | 4 | -11/+28 | |
2018-10-03 | Fix TriG test suite to not require clashing blank node IDs | David Robillard | 4 | -3/+4 | |
2018-07-30 | Fix resolving some URIs against base URIs with no trailing slash | David Robillard | 4 | -24/+41 | |
2018-07-22 | Remove long literal version of form feed test | David Robillard | 2 | -4/+0 | |
This causes problems with Windows checkouts that aren't configured properly, but the short version suffices to test the relevant code. | |||||
2018-07-22 | Fix memory leak in test suite | David Robillard | 1 | -0/+1 | |
2018-07-22 | Add serd_free for freeing memory allocated by serd | David Robillard | 1 | -5/+5 | |
2018-07-14 | Fix length of base64 encoded nodes | David Robillard | 1 | -0/+3 | |
2018-07-12 | Fix making relative URIs that are shorter than, but under, the root | David Robillard | 1 | -0/+9 | |