Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-12-18 | Windows: Fix leaking directory handles | David Robillard | 1 | -0/+1 | |
2020-12-18 | Add lilv_path_absolute_child() | David Robillard | 3 | -0/+40 | |
2020-12-18 | Add lilv_path_filename() | David Robillard | 3 | -0/+53 | |
2020-12-18 | Ensure that bundles are removed in state tests | David Robillard | 1 | -2/+2 | |
2020-12-18 | Check file contents rather than canonical paths in state tests | David Robillard | 1 | -6/+2 | |
This makes the checks work when the files are not symlinks, as on Windows. | |||||
2020-12-18 | Free instances before deleting state files | David Robillard | 1 | -7/+8 | |
This ensures that the files are no longer in use so they can be removed on Windows. | |||||
2020-12-18 | Fix build with ancient GCC | David Robillard | 1 | -2/+2 | |
2020-12-17 | Fix writing state manifests on Windows | David Robillard | 3 | -14/+153 | |
2020-12-16 | C++: Make more methods const | David Robillard | 1 | -13/+13 | |
2020-12-16 | C++: Clean up special member functions | David Robillard | 1 | -1/+28 | |
2020-12-16 | C++: Avoid unnecessary parameter copy overhead | David Robillard | 1 | -4/+4 | |
2020-12-16 | C++: Remove meaningless const specifiers in declarations | David Robillard | 1 | -4/+4 | |
2020-12-16 | lv2apply: Fix potential zero-sized VLA | David Robillard | 1 | -2/+2 | |
2020-12-16 | lv2apply: Fix potential memory leaks | David Robillard | 1 | -0/+1 | |
2020-12-16 | lv2bench: Fix potential memory leaks | David Robillard | 1 | -0/+2 | |
2020-12-16 | Fix inconsistent parameter name | David Robillard | 1 | -2/+2 | |
2020-12-16 | Fix potential null dereference | David Robillard | 1 | -1/+3 | |
2020-12-16 | Isolate variable declarations and initialize all variables | David Robillard | 3 | -5/+7 | |
2020-12-16 | Clean up includes | David Robillard | 15 | -27/+45 | |
2020-12-16 | Suppress new clang-tidy warnings | David Robillard | 1 | -0/+5 | |
2020-12-16 | Add separate clang-tidy configuration for tests | David Robillard | 1 | -0/+41 | |
2020-12-16 | Exclude lilvmm.hpp from clant checks | David Robillard | 1 | -0/+4 | |
2020-12-01 | Python: Allow connecting ports to structures | Kilian Ulrichsohn | 2 | -1/+6 | |
2020-12-01 | Fix wording of scratch_dir documentation | David Robillard | 1 | -5/+6 | |
2020-12-01 | Add a specific example for the use of copy_dir and link_dir | Alexandros Theodotou | 1 | -4/+10 | |
2020-12-01 | Rewrite state test suite | David Robillard | 1 | -399/+797 | |
Still a little bit hairy, but much better, and it's at least possible to add cases now without running away screaming. | |||||
2020-12-01 | Use the canonical path for state directories | David Robillard | 1 | -7/+8 | |
This fixes an issue on MacOS if hosts use a temporary directory generated with mkdtemp, which can create paths that involve symlinks. This is problematic since the parent directory comparisons here need to determine if a file is really in one of the state directories. The actual paths here shouldn't be visible in saved state, so resolve them fully so that the directory membership tests work correctly and copies and/or links are created when necessary. | |||||
2020-12-01 | Suppress new clang-tidy warnings | David Robillard | 1 | -1/+5 | |
2020-12-01 | Move features to shared test context | David Robillard | 1 | -71/+82 | |
2020-12-01 | Factor out loading test plugin | David Robillard | 1 | -16/+29 | |
2020-12-01 | Factor out state test context | David Robillard | 1 | -33/+64 | |
2020-12-01 | Factor out test URI map | David Robillard | 3 | -35/+98 | |
2020-11-17 | Suppress internal deprecation warnings about serd_uri_to_path() | David Robillard | 1 | -0/+9 | |
This function is deprecated, but is only used here in the implementation of lilv_uri_to_path() which is also deprecated (for the same reason), so application code will still get the warning. | |||||
2020-11-11 | Fix types | David Robillard | 1 | -2/+2 | |
Oof. How this got past me is anyone's guess. | |||||
2020-11-11 | Fix unlikely undefined behavior when saving state | David Robillard | 2 | -3/+19 | |
2020-11-11 | Suppress clang warning about nullability extension used by serd | David Robillard | 2 | -0/+1 | |
2020-11-11 | Fix potential memory error when joining filesystem paths | David Robillard | 3 | -5/+12 | |
2020-09-27 | Lilv 0.24.10v0.24.10 | David Robillard | 2 | -3/+5 | |
2020-09-27 | Update copyright date | David Robillard | 1 | -1/+1 | |
2020-09-27 | Suppress warnings in release builds | David Robillard | 1 | -0/+2 | |
2020-09-27 | Remove deprecated Doxygen configuration keys | David Robillard | 1 | -22/+1 | |
2020-09-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-09-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-09-26 | Fix memory leaks in lv2bench | David Robillard | 3 | -2/+10 | |
2020-09-26 | Normalise NEWS file | David Robillard | 1 | -1/+1 | |
2020-08-07 | Fix error handling when copying files | David Robillard | 2 | -0/+18 | |
2020-08-07 | Add filesystem tests | David Robillard | 3 | -40/+461 | |
2020-08-06 | Implement file locking on Windows | David Robillard | 1 | -1/+14 | |
2020-08-06 | Add lilv_remove() | David Robillard | 6 | -19/+21 | |
2020-08-06 | Fix lilv_create_directories() error handling when path is a file | David Robillard | 1 | -1/+2 | |