Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-04-06 | Make URI writing stricter by default | David Robillard | 6 | -11/+55 | |
2023-04-06 | Gracefully handle boolean subject and predicate errors | David Robillard | 7 | -2/+20 | |
2023-04-06 | Fix benchmark plot axis range | David Robillard | 1 | -4/+7 | |
2023-04-06 | Improve help text | David Robillard | 1 | -2/+2 | |
2023-04-06 | Check formatting of project Turtle files | David Robillard | 4 | -0/+89 | |
2023-04-06 | Use portable names for all test targets | David Robillard | 1 | -8/+8 | |
2023-04-06 | Simplify stdout capturing code | David Robillard | 1 | -4/+2 | |
This is slightly less excruciatingly slow on Windows, sometimes, maybe. | |||||
2023-04-06 | Add Fedora row and run lint tests on CI | David Robillard | 1 | -2/+13 | |
2023-04-06 | Add pylint test | David Robillard | 2 | -2/+26 | |
2023-04-06 | Fix flake8 warnings and add test | David Robillard | 3 | -3/+10 | |
2023-04-06 | Simplify command-line option test names | David Robillard | 1 | -2/+2 | |
2023-04-06 | Only load sphinxygen subproject if required tools are found | David Robillard | 1 | -7/+19 | |
2023-04-06 | Update top-level copyright dates | David Robillard | 2 | -2/+2 | |
2023-04-06 | Clean up documentation symbol ignore list | David Robillard | 1 | -12/+0 | |
2023-04-06 | Simplify naming of W3C test directories | David Robillard | 1026 | -9/+11 | |
This matches the names used in <https://github.com/w3c/rdf-tests.git>. | |||||
2023-04-06 | Update TriG test suite | David Robillard | 4 | -18/+34 | |
This suite can't be exactly copied because it has modifications to support exact streaming tests, but this commit incorporates some upstream changes manually. | |||||
2023-04-06 | Update Turtle test suite | David Robillard | 19 | -21/+123 | |
This suite can't be exactly copied because it has modifications to support exact streaming tests, but this commit incorporates some upstream changes manually. | |||||
2023-04-06 | Update NQuads test suite | David Robillard | 7 | -13/+29 | |
2023-04-06 | Update NTriples test suite | David Robillard | 3 | -2/+18 | |
2023-04-06 | Use more consistent meson formatting | David Robillard | 4 | -22/+34 | |
2023-04-06 | Simplify man page markup | David Robillard | 1 | -22/+13 | |
2023-04-06 | Use new meson strict warning system | David Robillard | 7 | -202/+43 | |
Meson includes warning_level=everything as of version 1.0.0, which supercedes maintaining redundant lists of warning flags here. | |||||
2023-04-05 | Fix sign conversion warnings | David Robillard | 3 | -6/+3 | |
2023-04-05 | Add tests for EOF within UTF-8 characters | David Robillard | 3 | -0/+16 | |
2023-04-05 | Clean up remaining stale test suite data | David Robillard | 21 | -301/+309 | |
2023-04-05 | Add a simple abbreviation test suite | David Robillard | 9 | -0/+94 | |
2023-04-05 | Move big test cases to a separate suite | David Robillard | 10 | -21/+38 | |
2023-04-05 | Factor out a suite of "perfect" reversible tests | David Robillard | 63 | -20141/+80428 | |
2023-04-05 | Clean up "good" test suite | David Robillard | 49 | -50262/+20276 | |
2023-04-05 | Separate test suites and simplify licensing metadata | David Robillard | 1227 | -29/+28 | |
2023-04-05 | Replace complicated test support code | David Robillard | 4 | -417/+117 | |
Everything covered by the old hairy runner script is now covered by more focused test suites, so the "thru" pass can be eliminated without losing significant coverage. | |||||
2023-04-05 | Improve test suite coverage | David Robillard | 2 | -2/+11 | |
2023-04-05 | Test full URI preservation separately | David Robillard | 5 | -1/+34 | |
2023-04-05 | Use a consistent naming scheme for "good" tests | David Robillard | 6 | -13/+16 | |
2023-04-05 | Run lax suite with the simpler runner script | David Robillard | 3 | -21/+52 | |
2023-04-05 | Test adding blank node prefixes separately | David Robillard | 2 | -6/+13 | |
2023-04-05 | Improve writer error handling | David Robillard | 11 | -154/+205 | |
2023-04-05 | Fix relative URI creation | David Robillard | 8 | -43/+58 | |
2023-04-05 | Test URI and blank node manipulation features separately | David Robillard | 18 | -11/+228 | |
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 | |